Upload Artifact Bundle to Release #1
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
on: | |
release: | |
types: [created] | |
name: Upload Artifact Bundle to Release | |
env: | |
DEVELOPER_DIR: "/Applications/Xcode_15.4.app/Contents/Developer" | |
SCIPIO_DEVELOPMENT: 1 | |
jobs: | |
release: | |
name: Build and Upload Artifact Bundle | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Resolve Dependencies | |
run: | | |
swift package resolve | |
- name: Build Binary | |
run: | | |
# Scipio can't build for x86_64 on Apple Silicon because it uses build tools plugin | |
swift build --disable-sandbox -c release --arch arm64 | |
- name: Get Current Tag | |
run: echo "TAG_NAME=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Make Artifact Bundle | |
run: | | |
swift package --allow-writing-to-package-directory generate-artifact-bundle \ | |
--package-version ${{ env.TAG_NAME }} \ | |
--executable-name scipio \ | |
--build-config release \ | |
--build-folder .build | |
- name: Upload Artifact Bundle to Release | |
run: | | |
gh release upload ${{ env.TAG_NAME }} ./scipio.artifactbundle.zip | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |