Skip to content

Commit

Permalink
Output release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck committed Dec 11, 2023
1 parent 7408f6a commit 0253396
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
types:
- closed
workflow_dispatch:
push:
branches:
- feat/automated-release

permissions:
contents: write
Expand All @@ -17,7 +20,7 @@ env:

jobs:
release:
if: github.event_name == 'workflow_dispatch'
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push'
runs-on: ubuntu-latest
environment: release

Expand Down Expand Up @@ -47,6 +50,11 @@ jobs:
repo_owner: ${{ github.repository_owner }}
repo_name: ${{ github.event.repository.name }}

- name: Get result
run: echo "${{steps.sget_release_notes.outputs.result}}"

- run: exit 1

# Check if the tag already exists
- id: tag_exists
uses: ./.github/actions/tag-exists
Expand Down

0 comments on commit 0253396

Please sign in to comment.