Skip to content

Grabana/0.22.1

Grabana/0.22.1 #161

Workflow file for this run

name: Release
on:
pull_request:
types: [closed]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.base_ref }}
- run: echo "${{ secrets.DOCKER_TOKEN }}" | docker login -u kphoen --password-stdin
- name: Tag
id: semver
uses: K-Phoen/semver-release-action@master
with:
release_branch: master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: make docker-push
if: steps.semver.outputs.tag
env:
VERSION: ${{ steps.semver.outputs.tag }}