Skip to content

v0.24.0-rc1

v0.24.0-rc1 #107

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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
# ensures we fetch tag history for the repository
fetch-depth: 0
- name: install go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
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@9f2ea568baec5017a7d608f03ef143a57745cc5c # release-1.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: 'release/vela*'
- name: publish
uses: elgohr/Publish-Docker-Github-Action@eb53b3ec07136a6ebaed78d8135806da64f7c7e2 # v5
with:
name: target/vela-cli
cache: true
tag_names: true
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}