Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sharunkumar committed Nov 14, 2023
1 parent 5cff7c5 commit a891a7b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: packer build

on:
workflow_dispatch:
push:
branches:
- master

jobs:
publish-package:
runs-on: ubuntu-latest
name: Publish Crate
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Cache
uses: Swatinem/rust-cache@v2

- name: Cargo Bump & Publish
run: |
cargo install cargo-bump
cargo bump
git add . && git commit -m "bump version" && git push
cargo publish

0 comments on commit a891a7b

Please sign in to comment.