99 lines
3.4 KiB
YAML
99 lines
3.4 KiB
YAML
name: Tagged release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
prepare-release:
|
|
runs-on: linux-arm64
|
|
outputs:
|
|
release_id: ${{ steps.release.outputs.release_id }}
|
|
steps:
|
|
- name: Check out the tag
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Test release-note generation
|
|
run: python3 .gitea/scripts/release.py test
|
|
|
|
- name: Create draft release
|
|
id: release
|
|
env:
|
|
GITEA_API_URL: ${{ gitea.server_url }}/api/v1
|
|
GITEA_REPOSITORY: ${{ gitea.repository }}
|
|
GITEA_REF_NAME: ${{ gitea.ref_name }}
|
|
GITEA_SERVER_URL: ${{ gitea.server_url }}
|
|
GITEA_SHA: ${{ gitea.sha }}
|
|
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
|
run: python3 .gitea/scripts/release.py prepare
|
|
|
|
build-macos-arm64:
|
|
needs: prepare-release
|
|
runs-on: linux-arm64
|
|
container: ghcr.io/rust-cross/cargo-zigbuild@sha256:82af75c41958c2af2787e8bedd912da7678a9438937e223e9d83d006d747b38b
|
|
steps:
|
|
- name: Check out the tag
|
|
env:
|
|
GITEA_REF_NAME: ${{ gitea.ref_name }}
|
|
GITEA_REPOSITORY: ${{ gitea.repository }}
|
|
GITEA_SERVER_URL: ${{ gitea.server_url }}
|
|
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
|
run: |
|
|
set -eu
|
|
git init
|
|
git -c http.extraHeader="Authorization: token $GITEA_TOKEN" fetch --depth=1 \
|
|
"$GITEA_SERVER_URL/$GITEA_REPOSITORY.git" "refs/tags/$GITEA_REF_NAME"
|
|
git checkout --detach FETCH_HEAD
|
|
|
|
- name: Build and package the Apple Silicon application
|
|
env:
|
|
CARGO_TARGET_AARCH64_APPLE_DARWIN_RUSTFLAGS: -C link-arg=-Wl,-headerpad,0x1000
|
|
GITEA_REF_NAME: ${{ gitea.ref_name }}
|
|
run: |
|
|
set -eu
|
|
version=$(printf '%s' "$GITEA_REF_NAME" | sed 's/[^A-Za-z0-9._-]/-/g')
|
|
asset="dist/DS4Server-${version}-darwin-arm64.dmg"
|
|
cargo zigbuild --release --locked --target aarch64-apple-darwin --bin ds4-server
|
|
cargo run --release --locked --manifest-path tools/macos-packager/Cargo.toml -- \
|
|
"$GITEA_REF_NAME" target/aarch64-apple-darwin/release/ds4-server "$asset"
|
|
|
|
- name: Upload the DMG
|
|
env:
|
|
GITEA_API_URL: ${{ gitea.server_url }}/api/v1
|
|
GITEA_REPOSITORY: ${{ gitea.repository }}
|
|
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
|
RELEASE_ID: ${{ needs.prepare-release.outputs.release_id }}
|
|
run: |
|
|
set -eu
|
|
asset=$(find dist -maxdepth 1 -type f -name '*.dmg' -print -quit)
|
|
test -n "$asset"
|
|
name=$(basename "$asset")
|
|
curl --fail --silent --show-error --retry 3 \
|
|
-H "Authorization: token $GITEA_TOKEN" \
|
|
-H "Content-Type: application/octet-stream" \
|
|
--data-binary "@$asset" \
|
|
"$GITEA_API_URL/repos/$GITEA_REPOSITORY/releases/$RELEASE_ID/assets?name=$name"
|
|
|
|
publish-release:
|
|
needs:
|
|
- prepare-release
|
|
- build-macos-arm64
|
|
runs-on: linux-arm64
|
|
steps:
|
|
- name: Check out the tag
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Publish complete release
|
|
env:
|
|
GITEA_API_URL: ${{ gitea.server_url }}/api/v1
|
|
GITEA_REPOSITORY: ${{ gitea.repository }}
|
|
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
|
RELEASE_ID: ${{ needs.prepare-release.outputs.release_id }}
|
|
run: python3 .gitea/scripts/release.py publish
|