Skip to content

ci: add auto-release workflow on tag push #38

ci: add auto-release workflow on tag push

ci: add auto-release workflow on tag push #38

Workflow file for this run

name: release
on:
push:
branches: ["master"]
paths-ignore:
- '.devcontainer/**'
tags-ignore: ['**']
jobs:
tests:
uses: brickhouse-tech/.github/.github/workflows/tests.yml@main
release:
needs: [tests]
uses: brickhouse-tech/.github/.github/workflows/release.yml@main
secrets:
GH_TOKEN: ${{ secrets.GH_TOKEN }}