Skip to content

Commit

Permalink
Merge pull request #459 from Ladicek/new-release-workflow
Browse files Browse the repository at this point in the history
Read project metadata in before/after release actions
  • Loading branch information
Ladicek authored Oct 23, 2024
2 parents 3cd43bf + 79f6ea0 commit 504b314
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ jobs:
if: ${{ github.event.pull_request.merged == true}}

steps:
- name: Retrieve project metadata
id: metadata
uses: radcortez/project-metadata-action@main
with:
github-token: ${{secrets.GITHUB_TOKEN}}
metadata-file-path: '.github/project.yml'

- name: Checkout
uses: actions/checkout@v4

Expand Down Expand Up @@ -50,6 +57,13 @@ jobs:
if: ${{ github.event.pull_request.merged == true}}

steps:
- name: Retrieve project metadata
id: metadata
uses: radcortez/project-metadata-action@main
with:
github-token: ${{secrets.GITHUB_TOKEN}}
metadata-file-path: '.github/project.yml'

- name: Checkout
uses: actions/checkout@v4

Expand Down

0 comments on commit 504b314

Please sign in to comment.