this repo has no description
at main 700 B view raw
1 2name: Create Archive 3on: [push] 4jobs: 5 build: 6 runs-on: ubuntu-latest 7 steps: 8 - name: Checkout code 9 uses: actions/checkout@v2 10 - name: pull latest and remove old file from repo 11 run: | 12 git config --global user.name "willmexe" 13 git config --global user.email "imdark200@gmail.com" 14 git config pull.rebase false 15 git pull 16 rm -f release.zip 17 - name: Archive Release 18 uses: thedoctor0/zip-release@master 19 with: 20 filename: 'release.zip' 21 exclusions: '*.git* /*node_modules/* .editorconfig' 22 - name: push changes to remote 23 run: | 24 git add -A 25 git commit -m "new pack" 26 git push --force