Skip to content

Verifying tags

Verifying tags #4

name: Build and tag Rust project
on:
push:
branches:
- master
jobs:
release:
name: ${{ github.actor }} authorized build and tag
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: cargo build --release --locked
- name: Run tests
run: cargo test
- name: Bump and Tag
uses: anothrNick/github-tag-action@1.17.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
id: bump_version