Skip to content

fix release workflow #10

fix release workflow

fix release workflow #10

Workflow file for this run

name: release
on: [pull_request, workflow_dispatch]
jobs:
release:
runs-on: ubuntu-latest
steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Get the latest version
# id: latest
# uses: miniscruff/changie-action@v2
# with:
# version: latest
# args: latest
# - name: Release
# uses: softprops/action-gh-release@v2
# with:
# body_path: ".changes/${{ steps.latest.outputs.output }}.md"
# tag_name: "${{ steps.latest.outputs.output }}"
- name: Test
run: echo "token:" "$github_token" " release " "$release_token"
shell: bash
env:
github_token: ${{secrets.GITHUB_TOKEN}}
release_token: ${{secrets.RELEASE_TOKEN}}
# - name: Release
# uses: softprops/action-gh-release@v2
# with:
# body: View full release notes in the [Changelog](https://github.com/bqbooster/dbt-bigquery-monitoring/blob/main/CHANGELOG.md)
# tag_name: v2 # currently no way of finding this in changie directly
# token: ${{ secrets.GITHUB_TOKEN }}