From 4f75c5df6279b12246d8ba6c4911d229152fec8e Mon Sep 17 00:00:00 2001 From: Ethan Ho <53266718+ethho@users.noreply.github.com> Date: Wed, 17 Jan 2024 08:57:21 -0700 Subject: [PATCH] Unnecessary to use abs path --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5d40b74..c185ecf 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -22,7 +22,7 @@ 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/') @@ -30,4 +30,4 @@ jobs: 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 \ No newline at end of file + body_path: docs/CHANGELOG-${{ github.ref_name }}.md \ No newline at end of file