Skip to content

Commit

Permalink
Fix github action env variable usage
Browse files Browse the repository at this point in the history
  • Loading branch information
szilardhuber committed Jun 1, 2023
1 parent d4f8bab commit ac15914
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: jacobtomlinson/gha-find-replace@v2
with:
find: "{GITHUB_RUN_ID}"
replace: "${{ minor_version }}"
replace: "$minor_version"
include: "pbiviz.json" # Will match all README.md files in any nested directory
- name: Find and Replace
uses: jacobtomlinson/gha-find-replace@v2
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ minor_version }}.${{ github.run_number }}
tag_name: $minor_version.${{ github.run_number }}
files: |
dist/PBI*.pbiviz
- run: echo "🍏 This job's status is ${{ job.status }}."
Expand Down

0 comments on commit ac15914

Please sign in to comment.