-
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (21 loc) · 619 Bytes
/
Copy pathrelease.yml
File metadata and controls
27 lines (21 loc) · 619 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Release
on:
release:
types: [published]
permissions:
contents: write
jobs:
release:
# Build against the latest SDK so the shipped app gets the current UI look.
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- name: Install XcodeGen
run: brew install xcodegen
- name: Build release artifact
run: ./scripts/build-release.sh
- name: Attach artifact to the release
env:
GH_TOKEN: ${{ github.token }}
TAG: ${{ github.event.release.tag_name }}
run: gh release upload "$TAG" dist/PassQuickAccess.zip --clobber