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.
2 parents a94c476 + b8acb0f commit 1561beaCopy full SHA for 1561bea
.github/workflows/sync-stacktodate.yml
@@ -8,18 +8,11 @@ jobs:
8
sync-stacktodate:
9
runs-on: ubuntu-latest
10
steps:
11
- - uses: actions/checkout@v4
12
-
13
- - name: Set up Go
14
- uses: actions/setup-go@v4
15
- with:
16
- go-version: '1.25'
17
18
- - name: Download dependencies
19
- run: go mod download
20
21
- - name: Build stacktodate
22
- run: go build -o stacktodate
+ - name: Download stacktodate binary
+ run: |
+ VERSION="latest"
+ curl -sL https://github.com/stacktodate/stacktodate-cli/releases/download/${VERSION}/stacktodate-linux-amd64 -o stacktodate
+ chmod +x stacktodate
23
24
- name: Check stacktodate config
25
run: ./stacktodate check
0 commit comments