Skip to content

Commit ed24e9b

Browse files
committed
Add a publish workflow to github actions
1 parent 023341c commit ed24e9b

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Publish
2+
on:
3+
push:
4+
branches: [main, dev] # TODO: REMOVE DEV WHEN DISABLING DRY RUN
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
with:
11+
github_access_token: ${{ secrets.GITHUB_TOKEN }}
12+
- run: cargo publish --dry-run

0 commit comments

Comments
 (0)