Skip to content

Commit

Permalink
Merge pull request #1 from ubiregiinc/seki/add/release-workflow
Browse files Browse the repository at this point in the history
Add release workflow
  • Loading branch information
trickart authored Dec 9, 2024
2 parents 262fc9a + 584caa7 commit faa514e
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/release-artifact.yaml
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 }}"
18 changes: 18 additions & 0 deletions info.json.template
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"
]
}
]
}
}
}

0 comments on commit faa514e

Please sign in to comment.