-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ubiregiinc/seki/add/release-workflow
Add release workflow
- Loading branch information
Showing
2 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
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: | | ||
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 }}" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"schemaVersion": "1.0", | ||
"artifacts": { | ||
"license-plists-merger": { | ||
"version": "__VERSION__", | ||
"type": "executable", | ||
"variants": [ | ||
{ | ||
"path": "license-plists-merger-__VERSION__-macos/bin/license-plists-merger", | ||
"suportedTriples": [ | ||
"x86_64-apple-macosx", | ||
"arm64-apple-macosx" | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} |