Skip to content

v0.21.0-rc2

v0.21.0-rc2 #94

Workflow file for this run

# name of the action
name: prerelease
# trigger on push events with `v*` in tag
# TODO: find an action that is compatible based off the tag event
# on:
# push:
# tags:
# - 'v*'
# trigger on release events
on:
release:
types: [ created ]
# pipeline to execute
jobs:
prerelease:
runs-on: ubuntu-latest
steps:
- name: clone
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
with:
# ensures we fetch tag history for the repository
fetch-depth: 0
- name: install go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4
with:
# use version from go.mod file
go-version-file: 'go.mod'
cache: true
check-latest: true
- name: build
run: ./release.sh
- name: upload
uses: skx/github-action-publish-binaries@release-1.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: 'release/vela*'
- name: publish
uses: elgohr/Publish-Docker-Github-Action@43dc228e327224b2eda11c8883232afd5b34943b # v5
with:
name: target/vela-cli
cache: true
tag_names: true
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}