Skip to content

Commit

Permalink
Fix/docker push (#390)
Browse files Browse the repository at this point in the history
* fix(deps): 🔒 (#388) update docker file deps

* chore(gh-action): 👷 (#388) use workflow calls instead of tag trigger

* chore(gh-action): 🐛 (#388) fix within worfklow runs

* chore(gh-action): 🔒  (#388) small permission fix

* chore(gh-action): 🐛  (#388) small typo fix

* fix(release): 🐛 (#388) fix bug with package name
  • Loading branch information
AndreasAugustin authored Sep 24, 2023
1 parent 7146ab9 commit 0536717
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release_please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ on:
outputs:
release_created:
description: "Set if the release has been created"
value: ${{ jobs.release-please.outputs.release_created }}
value: ${{ jobs.release_please.outputs.release_created }}
tag_name:
description: "The tag name"
value: ${{ jobs.release-please.outputs.tag_name }}
value: ${{ jobs.release_please.outputs.tag_name }}
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
release-please:
release_please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
release-type: simple
package-name: release-please-action
package-name: actions-template-sync

0 comments on commit 0536717

Please sign in to comment.