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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Release
on:
workflow_dispatch:
workflow_run: # zizmor: ignore[dangerous-triggers] -- scoped to main branch, checks conclusion
workflows: [CI]
types: [completed]
branches: [main]
permissions: {}
jobs:
build:
if: >-
github.event_name == 'workflow_dispatch'
|| github.event.workflow_run.conclusion == 'success'
runs-on: macos-latest
permissions:
contents: write
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- name: Calculate version
id: version
run: |
CALVER=$(date -u +"%Y-%m-%d")
SHORT_SHA="${GITHUB_SHA::7}"
echo "version=${CALVER}+${SHORT_SHA}" >> $GITHUB_OUTPUT
- name: Build
run: |
RAMEKIN_VERSION="${STEPS_VERSION_OUTPUTS_VERSION}" cargo build --release
tar -czf ramekin-aarch64-apple-darwin.tar.gz -C target/release ramekin
env:
STEPS_VERSION_OUTPUTS_VERSION: ${{ steps.version.outputs.version }}
- name: Publish
run: |
VERSION="${STEPS_VERSION_OUTPUTS_VERSION}"
gh release create "v${VERSION}" \
--title "v${VERSION}" \
--generate-notes \
--target "${GITHUB_SHA}" \
ramekin-aarch64-apple-darwin.tar.gz
env:
GH_TOKEN: ${{ github.token }}
STEPS_VERSION_OUTPUTS_VERSION: ${{ steps.version.outputs.version }}
dotslash:
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- name: Generate DotSlash file
uses: facebook/dotslash-publish-release@2539c4d8ae00a42773306c8731d2dd3724d979d2 # v1
with:
config: .github/dotslash-config.json
tag: v${{ needs.build.outputs.version }}
env:
GITHUB_TOKEN: ${{ github.token }}