We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cba70fe commit a0b51d1Copy full SHA for a0b51d1
.github/workflows/check-archives.yml
@@ -25,25 +25,18 @@ jobs:
25
with:
26
swift-version: "5.10.1"
27
28
- - name: Clean Swift build cache
29
- run: |
30
- swift package clean
31
- rm -rf .build
32
-
33
34
- name: Build Swift archive bot
35
- run: swift build -v -c release
+ run: swift build -c release
36
37
- name: Run ArchiveDetective
38
- env:
39
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40
run: |
41
echo "== Running ArchiveDetective =="
42
.build/release/ArchiveDetective > output.log 2>&1
43
echo "== Output Start =="
44
cat output.log
45
echo "== Output End =="
46
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47
48
- name: Commit and push changes
49
0 commit comments