Skip to content

Merge branch 'thallgren/read-only' #18

Merge branch 'thallgren/read-only'

Merge branch 'thallgren/read-only' #18

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.GITHUB_TOKEN }}' | docker login ghcr.io -u='${{ github.actor }}' --password-stdin
PLUGIN_VERSION=${VER#refs/tags/v} make push