Skip to content

Commit d169338

Browse files
committed
ci(prepare): fix issue with setup-go cache
1 parent d9d8975 commit d169338

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/_prepare.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,23 @@ jobs:
2626
with:
2727
repository: jimeh/build-emacs-for-macos
2828
ref: ${{ inputs.builder_ref }}
29-
path: builder
3029
- name: Store builder Git SHA
3130
run: |
3231
git rev-parse HEAD > emacs-builder-git-sha.txt
33-
working-directory: builder
3432
- name: Upload builder git SHA artifact
3533
uses: actions/upload-artifact@v3
3634
with:
3735
name: emacs-builder-git-sha
38-
path: builder/emacs-builder-git-sha.txt
36+
path: emacs-builder-git-sha.txt
3937
if-no-files-found: error
4038
- uses: actions/setup-go@v4
4139
with:
42-
go-version: 1.21
40+
go-version: "1.21"
4341
- name: Build emacs-builder tool
4442
run: make build
45-
working-directory: builder
4643
- name: Upload emacs-builder artifact
4744
uses: actions/upload-artifact@v3
4845
with:
4946
name: emacs-builder
50-
path: builder/bin/emacs-builder
47+
path: bin/emacs-builder
5148
if-no-files-found: error

.github/workflows/update-metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
ref: meta
1717
- uses: actions/setup-go@v4
1818
with:
19-
go-version: "1.20"
19+
go-version: "1.21"
2020
- name: update total downloads shield JSON
2121
run: >-
2222
go run . badges downloads -o total-downloads/shield.json

0 commit comments

Comments
 (0)