Skip to content

Commit

Permalink
test release
Browse files Browse the repository at this point in the history
  • Loading branch information
RuyerZ committed Jul 15, 2022
1 parent 3dbe6cc commit 28bdd11
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/build2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,17 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: ${{ env.RELEASE_NAME }}
path: archive/*
path: archive/*

- name: Zip
shell: bash
if: startsWith(github.ref, 'refs/tags/')
run: |
cd archive
zip -9 $RELEASE_NAME.zip *
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: format('archive/{0}.zip',env.RELEASE_NAME)

0 comments on commit 28bdd11

Please sign in to comment.