Skip to content

Commit

Permalink
update ci scripts to add access to scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
TarikGul committed Jan 3, 2025
1 parent 6681d76 commit 31867a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/pr-any.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Set Execute Permissions
run: chmod +x ./scripts/*
- name: ${{ matrix.step }}
run: |
yarn install --immutable
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Set Execute Permissions
run: chmod +x ./scripts/*
- name: ${{ matrix.step }}
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
Expand All @@ -44,6 +46,8 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Set Execute Permissions
run: chmod +x ./docker/*
- name: docker
env:
DOCKER_PASS: ${{ secrets.DOCKER_PASS }}
Expand Down Expand Up @@ -74,6 +78,8 @@ jobs:
# run: |
# mkdir -p ~/private_keys/
# echo '${{ secrets.API_KEY }}' > ~/private_keys/AuthKey_${{ secrets.API_KEY_ID }}.p8
- name: Set Execute Permissions
run: chmod +x ./scripts/*
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
Expand Down

0 comments on commit 31867a5

Please sign in to comment.