Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
are-you-sure:
description: 'Are you sure you want to cut a release? Only "YES!!!" will be accepted'
description: 'Are you sure you want to cut a release? Only "YES!!!" will be accepted'
required: true
version:
description: 'Version number (leave empty to auto-increment)'
Expand All @@ -16,7 +16,6 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: write # Required for creating tags and branches

steps:
- name: Checkout code
uses: actions/checkout@v5
Expand All @@ -30,6 +29,7 @@ jobs:
go-version: '1.22'

- name: Create release
working-directory: releaser
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
Expand All @@ -45,4 +45,4 @@ jobs:
FLAGS="$FLAGS -version=${{ inputs.version }}"
fi

go run make_release.go -repo=. $FLAGS
go run make_release.go -repo=../ $FLAGS
File renamed without changes.
Loading