Skip to content
This repository has been archived by the owner on May 5, 2024. It is now read-only.

Commit

Permalink
build: access the github context as a variable, and not a literal
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinpinto committed Oct 21, 2019
1 parent 9d2bd88 commit 61a2b74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- uses: "./packages/keybase-notifications/"
with:
message: "Version `${{ steps.automatic_releases.outputs.automatic_releases_tag }}` of `{{ github.repository }}` successfully released."
message: "Version `${{ steps.automatic_releases.outputs.automatic_releases_tag }}` of `${{ github.repository }}` successfully released."
keybase_username: "${{ secrets.KeybaseUsername }}"
keybase_paper_key: "${{ secrets.KeybasePaperKey }}"
keybase_team_name: "${{ secrets.KeybaseTeamName }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- uses: "marvinpinto/action-keybase-notifications@latest"
with:
message: "Version `${{ steps.automatic_releases.outputs.automatic_releases_tag }}` of `{{ github.repository }}` successfully released."
message: "Version `${{ steps.automatic_releases.outputs.automatic_releases_tag }}` of `${{ github.repository }}` successfully released."
keybase_username: "${{ secrets.KeybaseUsername }}"
keybase_paper_key: "${{ secrets.KeybasePaperKey }}"
keybase_team_name: "${{ secrets.KeybaseTeamName }}"
Expand Down

0 comments on commit 61a2b74

Please sign in to comment.