yamllint/.github/workflows/release.yml
Ilir Bekteshi 1685dea1ac Autotag releases, use Dockerfile (for now) #5
Add wf to autotag minor and patch releases
By default use Dockerfile rather than docker image,
obviously is slower by ~15 sec which consumes precious
runner minutes but harder to automate releases, tagging and
updating image reference in action.yaml
thou not impossible. Next time.
2020-02-28 10:14:09 +01:00

13 lines
237 B
YAML

name: Update Semver
on:
push:
branches-ignore:
- '**'
tags:
- 'v*.*.*'
jobs:
update-semver:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: haya14busa/action-update-semver@v1