Skip to content

Commit

Permalink
ooops
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaz492 committed Oct 4, 2024
1 parent 2d530e4 commit 85e0e13
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/snapshot-signed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,13 @@ jobs:
- name: Codesign & Notarize
run: |
echo "${{secrets.APPLE_API_KEY}}" > apple_api_key.p8
cd ./build/bin
codesign -s "5372643C69B1D499BDF6EA772082E9CE99E85029" -v ./ftb-debug-ui.app --options=runtime --timestamp
codesign -dv ./ftb-debug-ui.app
echo "${{secrets.APPLE_API_KEY}}" > apple_api_key.p8
zip -r ../../out/ftb-debug-${{ matrix.goos }}-${{ matrix.goarch }}.zip ftb-debug-ui.app
cd ../../out
xcrun notarytool submit "./ftb-debug-${{ matrix.goos }}-${{ matrix.goarch }}.zip" --key "./apple_api_key.p8" --key-id ${{ secrets.APPLE_API_KEY_ID }} --issuer ${{ secrets.APPLE_API_ISSUER }} --wait
xcrun notarytool submit "./ftb-debug-${{ matrix.goos }}-${{ matrix.goarch }}.zip" --key "../apple_api_key.p8" --key-id ${{ secrets.APPLE_API_KEY_ID }} --issuer ${{ secrets.APPLE_API_ISSUER }} --wait
- name: Archive artifacts
uses: actions/upload-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ runs:
run: |
echo "GITHUB_SHA_SHORT=$(echo $GITHUB_SHA | cut -c 1-6)" >> $GITHUB_ENV
- name: Setup Go 1.22
- name: Setup Go 1.23
uses: actions/setup-go@v5
with:
go-version: 1.22
go-version: 1.23
cache-dependency-path: go.sum

- name: Setup NodeJS
Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module ftb-debug-ui

go 1.21

toolchain go1.23.1
go 1.23

require (
github.com/cavaliergopher/grab/v3 v3.0.1
Expand Down

0 comments on commit 85e0e13

Please sign in to comment.