Skip to content

Commit dee610c

Browse files
authored
Merge pull request #3 from AstraBert/fix/ci-publish-action
fix: ci publishing for go
2 parents 8a7ff88 + 75eb2f5 commit dee610c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish-go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Release Go App
22
on:
33
push:
44
tags:
5-
- "go@v*"
5+
- "v*"
66

77
permissions:
88
contents: read # for checkout

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Publish
22
on:
33
push:
44
tags:
5-
- "v*"
5+
- "rust@v*"
66

77
permissions:
88
contents: read # for checkout
@@ -37,7 +37,7 @@ jobs:
3737
- name: Login to cargo
3838
run: cargo login <<< $CARGO_API_TOKEN
3939
env:
40-
CARGO_API_TOKEN: ${{ secrets.CARGO_API_TOKEN }}
40+
CARGO_API_TOKEN: ${{ secrets.CARGO_API_TOKEN }}
4141

4242
- name: Publish to crates
4343
run: cargo publish

0 commit comments

Comments
 (0)