-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (52 loc) · 1.65 KB
/
Copy pathrelease.yml
File metadata and controls
60 lines (52 loc) · 1.65 KB
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
---
name: Release
run-name: Release ${{ github.event.release.tag_name }}
on:
release:
types:
- published
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test Release
runs-on: [self-hosted, macOS]
steps:
- name: Checkout Repository
uses: actions/checkout@v6
with:
clean: true
- name: Clear SwiftPM Caches
run: |
rm -rf ~/.swiftpm
rm -rf ~/Library/Caches/org.swift.swiftpm
rm -rf ~/Library/org.swift.swiftpm
rm -rf .swiftpm
rm -rf .build
- name: Run Tests
run: swift test -v
notify_package_collection:
name: Notify Package Collection
runs-on: ubuntu-latest
needs: test
steps:
- name: Trigger Swift Package Collection Rebuild
env:
COLLECTION_REPO: thatfactory/swift-package-collection
WORKFLOW_FILE: publish.yml
REF: main
GH_TOKEN: ${{ secrets.COLLECTION_TRIGGER_TOKEN }}
SOURCE_REPO: ${{ github.repository }}
SOURCE_VERSION: ${{ github.event.release.tag_name }}
run: |
set -euo pipefail
if [ -z "${GH_TOKEN:-}" ]; then
echo "Missing COLLECTION_TRIGGER_TOKEN secret"
exit 1
fi
curl -sS -X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $GH_TOKEN" \
"https://api.github.com/repos/$COLLECTION_REPO/actions/workflows/$WORKFLOW_FILE/dispatches" \
-d "{\"ref\":\"$REF\",\"inputs\":{\"source_repo\":\"$SOURCE_REPO\",\"source_version\":\"$SOURCE_VERSION\"}}"