Skip to content

Commit

Permalink
Merge pull request #173 from giginet/workflow_dispatch-for-release
Browse files Browse the repository at this point in the history
Make release workflow enable to trigger manually
  • Loading branch information
ikesyo authored Jan 20, 2025
2 parents 1518a8f + fa9a0cf commit e209804
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
on:
release:
types: [created]
types: [published]
# Use with only Tags
workflow_dispatch:

name: Upload Artifact Bundle to Release
env:
Expand All @@ -21,7 +23,7 @@ jobs:
swift build --disable-sandbox -c release --arch arm64
swift build --disable-sandbox -c release --arch x86_64
- name: Get Current Tag
run: echo "TAG_NAME=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
run: echo "TAG_NAME=${{ github.event.release.tag_name || github.ref_name }}" >> $GITHUB_ENV
- name: Make Artifact Bundle
run: |
swift package --allow-writing-to-package-directory generate-artifact-bundle \
Expand Down

0 comments on commit e209804

Please sign in to comment.