Skip to content

Stability improvements #16

Stability improvements

Stability improvements #16

Workflow file for this run

on:
push:
tags:
# These aren't regexps. They are "Workflow Filter patterns"
- v[0-9]+.[0-9]+.[0-9]
- v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+
- v[0-9]+.[0-9]+.[0-9]+-test.[0-9]+
jobs:
build-release:
strategy:
fail-fast: false
matrix:
architecture:
- amd64
- arm64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: stable
- name: Push image
env:
PLUGIN_ARCH: ${{ matrix.architecture }}
VER: ${{ github.ref }}
run: |
echo '${{ secrets.DOCKERHUB_PASSWORD }}' | docker login -u='${{ secrets.DOCKERHUB_USERNAME }}' --password-stdin
PLUGIN_VERSION=${VER#refs/tags/v} make push