Skip to content

Commit

Permalink
chore: update ref name
Browse files Browse the repository at this point in the history
  • Loading branch information
im-adithya committed Sep 26, 2024
1 parent 347105c commit b7f64c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/http.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ jobs:

steps:
- name: Setup
shell: bash
run: |
SANITIZED_TAG=$(echo "${GITHUB_REF_NAME}" | sed 's/[./]/-/g')
echo $SANITIZED_TAG
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/wails.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ jobs:
- name: Setup
shell: bash
run: |
TAG="${{ github.ref_name }}"
SANITIZED_TAG="${ TAG//./- }"
SANITIZED_TAG=$(echo "${GITHUB_REF_NAME}" | sed 's/[./]/-/g')
echo "EXEC_NAME=AlbyHub" >> $GITHUB_ENV
echo "PACKAGE_NAME=AlbyHub-Desktop-${{ runner.os }}-${SANITIZED_TAG}" >> $GITHUB_ENV
Expand Down Expand Up @@ -165,11 +164,11 @@ jobs:
- name: Patch executable RPATH
if: runner.os == 'macOS'
run: |
install_name_tool -add_rpath @executable_path/../Frameworks "./build/bin/${{ env.EXEC_NAME }}.app/Contents/MacOS/${{ env.EXEC_NAME }}"
install_name_tool -add_rpath @executable_path/../Frameworks ./build/bin/${{ env.EXEC_NAME }}.app/Contents/MacOS/${{ env.EXEC_NAME }}
- name: Add macOS perms
if: runner.os == 'macOS'
run: chmod +x "build/bin/${{ env.EXEC_NAME }}.app/Contents/MacOS/${{ env.EXEC_NAME }}"
run: chmod +x build/bin/${{ env.EXEC_NAME }}.app/Contents/MacOS/${{ env.EXEC_NAME }}
shell: bash

- name: Add Linux perms
Expand Down

0 comments on commit b7f64c4

Please sign in to comment.