Merge pull request #4 from ubiregiinc/seki/fix/release-workflow-token #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Artifact | |
on: | |
push: | |
tags: | |
- '*.*.*' | |
jobs: | |
release: | |
runs-on: macos-latest | |
env: | |
DEVELOPER_DIR: /Applications/Xcode.app/Contents/Developer | |
ARTIFACT_BUNDLE: "LicensePlistsMerger.artifactbundle" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Show Xcode Version | |
run: xcodebuild -version | |
- name: Build | |
run: swift build -c release --product license-plists-merger --arch arm64 --arch x86_64 | |
- name: Set env | |
run: echo "ARTIFACT_BUNDLE_PATH"=${ARTIFACT_BUNDLE}/license-plists-merger-${{ github.ref_name }}-macos/bin >> $GITHUB_ENV | |
- name: Create Artifact Bundle | |
run: | | |
set -x | |
mkdir -p "${ARTIFACT_BUNDLE_PATH}" | |
sed "s/__VERSION__/${{ github.ref_name }}/g" info.json.template > "${ARTIFACT_BUNDLE}/info.json" | |
cp -f .build/apple/Products/Release/license-plists-merger "${ARTIFACT_BUNDLE_PATH}" | |
cp -f LICENSE "${ARTIFACT_BUNDLE_PATH}" | |
zip -yr - "${ARTIFACT_BUNDLE}" > ./license-plists-merger-macos.artifactbundle.zip | |
- name: Compute Checksum | |
run: | | |
CHECKSUM=$(swift package compute-checksum ./license-plists-merger-macos.artifactbundle.zip) | |
echo $CHECKSUM | |
echo "CHECKSUM=${CHECKSUM}" >> $GITHUB_ENV | |
- name: Create release | |
run: | | |
gh release create "${{ github.ref_name}}" "./license-plists-merger-macos.artifactbundle.zip" -t "${{ github.ref_name }}" -n "**checksum**: ${{ env.CHECKSUM }}" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |