fix: not disabling the context menu on the browser (#861) #402
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "bind/**" | |
- "cmd/**" | |
- "internal/**" | |
- "pkg/**" | |
- "ui/**" | |
- ".github/workflows/release.yml" | |
- ".github/release-drafter.yml" | |
- "go.mod" | |
- "go.sum" | |
- "Dockerfile" | |
env: | |
GO_VERSION: "1.23" | |
permissions: | |
contents: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
outputs: | |
tag_name: ${{ steps.create_release.outputs.tag_name }} | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- uses: release-drafter/release-drafter@v5 | |
id: create_release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |