Skip to content

Commit

Permalink
Update gen2.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
xplshn authored Oct 24, 2024
1 parent 5830a03 commit 1888b70
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/gen2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,15 @@ jobs:
echo "Archiving output from $OUT_DIR"
ls "$OUT_DIR"
- name: Upload build artifacts
if: ${{ github.event.inputs.release == 'false' }} # Only upload artifacts if no release
uses: actions/upload-artifact@v3
with:
name: app-bundles
path: ${{ env.OUT_DIR }}

- name: Manage Tags
if: ${{ github.event.inputs.release == 'true' }} # Only manage tags for releases
run: |
git fetch --tags
TAGS=$(git tag | sort -V)
Expand Down

0 comments on commit 1888b70

Please sign in to comment.