Delete .github/workflows directory

This commit is contained in:
Andros Fenollosa 2021-08-10 16:47:31 +02:00 committed by GitHub
parent 93f940124c
commit 5a45ec15aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 36 deletions

View File

@ -1,36 +0,0 @@
name: build-pack
on:
push:
branches:
- self
schedule:
- cron: "21 6 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Lein
run: |
sudo apt update
sudo apt install leiningen
- name: Build
run: |
lein run
- name: Upload
run: |
git checkout self
rm -rf docs/index.html docs/static
mv dist/index.html docs
mv dist/static docs/
git config user.email "action@github.com"
git config user.name "GitHub Action"
git add docs/index.html
git add docs/static/
git commit -m "$(date +"%F")"
git push origin self