Skip to content

Upgrade dependencies. #15

Upgrade dependencies.

Upgrade dependencies. #15

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@v3
- uses: actions/setup-go@v3
with:
go-version: '~1.19.6'
- 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