Skip to content

Commit

Permalink
Unnecessary to use abs path
Browse files Browse the repository at this point in the history
  • Loading branch information
ethho committed Jan 17, 2024
1 parent ec354fb commit 4f75c5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
docker compose cp builder:/tmp/pam-oauth2/libpam_oidc_musl.so ./pam-oidc/bin/
- name: Touch Changelog
if: startsWith(github.ref, 'refs/tags/')
run: touch "${{ github.workspace }}/docs/CHANGELOG-${{ github.ref_name }}.md"
run: touch "docs/CHANGELOG-${{ github.ref_name }}.md"
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
./pam-oidc/bin/libpam_oidc_gnu.so
./pam-oidc/bin/libpam_oidc_musl.so
body_path: ${{ github.workspace }}/docs/CHANGELOG-${{ github.ref_name }}.md
body_path: docs/CHANGELOG-${{ github.ref_name }}.md

0 comments on commit 4f75c5d

Please sign in to comment.