Skip to content

build(deps): bump the gin group with 2 updates (#186) #10

build(deps): bump the gin group with 2 updates (#186)

build(deps): bump the gin group with 2 updates (#186) #10

Workflow file for this run

---
# Creates a new GitHub release if the version in go.mod changed in the main branch and
# if the tag does not exist yet.
name: create-tag
on:
push:
branches:
- main
paths:
- go.mod
permissions:
contents: read
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # also fetch tags
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Get token
id: get_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
with:
app_id: ${{ secrets.OBS_AUTOMATION_APP_ID }}
private_key: ${{ secrets.OBS_AUTOMATION_APP_PEM }}
permissions: >-
{
"contents": "write"
}
- run: make create-release
env:
GH_TOKEN: ${{ steps.get_token.outputs.token }}