Skip to content

error handling

error handling #5

Workflow file for this run

name: packer build
on:
workflow_dispatch:
push:
branches:
- master
jobs:
publish-package:
runs-on: ubuntu-latest
name: Publish Crate
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Cargo Bump & Publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "Sharun"
sudo apt install libdbus-1-dev pkg-config
cargo install cargo-bump
cargo bump
cargo update
git add . && git commit -m "bump version"
cargo publish && git push