Skip to content

Update to v0.46.6.4 #20

Update to v0.46.6.4

Update to v0.46.6.4 #20

Workflow file for this run

name: Bump version
on:
push:
paths:
- "bin/version"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.sha }}
fetch-depth: '0'
- name: Set variables
run: |
METABASE_VERSION=$(head bin/version)
echo "VERSION=v$METABASE_VERSION" >> $GITHUB_ENV
- name: Bump version and push tag
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CUSTOM_TAG: ${{ env.VERSION }}