Skip to content

ci: plan for the CI/CD #3

ci: plan for the CI/CD

ci: plan for the CI/CD #3

name: Build and tag Rust project
on:
push:
branches:
- master
jobs:
build:

Check failure on line 9 in .github/workflows/tag_and_release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tag_and_release.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
name: {{ github.actor }} authorized build and release
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