Add omada-controller release #950
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Tag Flux target | |
on: | |
push: | |
branches-ignore: | |
- flux-image-updates | |
paths: | |
- 'kubernetes/**' | |
pull_request: | |
types: | |
- closed | |
branches-ignore: | |
- flux-image-updates | |
paths: | |
- 'kubernetes/**' | |
jobs: | |
create-tag: | |
if: ${{ github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.merged == true) }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout source code | |
- uses: rickstaa/action-create-tag@v1 | |
name: Create or update tag | |
with: | |
tag: flux-target | |
message: Update flux-target to HEAD | |
force_push_tag: true |