Skip to content

Commit

Permalink
Fix script path for remote uses (fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukiffer committed Nov 9, 2022
1 parent 0d8b214 commit 09b9587
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,13 @@ jobs:
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN_BASIC }}
- uses: actions/checkout@v3
with:
repository: cncsc/actions
path: /temp/actions/
- id: get-semver
name: Read generated semver
run: ${{ github.action_path }}/scripts/versioning/get-semver.sh
run: /temp/actions/scripts/versioning/get-semver.sh
shell: bash
env:
CURRENT_COMMIT_HASH: ${{ github.sha }}

0 comments on commit 09b9587

Please sign in to comment.