Skip to content

Commit

Permalink
Replace env variable with github context variable
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenkuhn committed Sep 7, 2022
1 parent 4faef45 commit 7197766
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Create release
env:
GitHub_Access_Token: ${{ secrets.GITHUB_TOKEN }}
GitHub_Repository: ${{ env.GITHUB_REPOSITORY }}
GitHub_Repository: ${{ github.repository }}
run: ./build.sh --target PublishToGitHub --skip PublishArtifacts


Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Download release assets
uses: Itsblue/download-release-assets-action@master
with:
repo: ${{ env.GITHUB_REPOSITORY }}
repo: ${{ github.repository }}
version: ${{ github.event.release.id }}
file: "Sknet.*"
path: ./artifacts
Expand Down

0 comments on commit 7197766

Please sign in to comment.