Skip to content

Commit

Permalink
PIPELINE: use bash instead of msys2
Browse files Browse the repository at this point in the history
  • Loading branch information
ciscon committed Oct 21, 2024
1 parent 2633ab3 commit 7e2efd3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-deploy-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,20 @@ jobs:
- name: Setup SSH
env:
SSH_AUTH_SOCK: C:\ssh_agent.sock
shell: msys2 {0}
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
shell: bash
run: |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
ssh-add - <<< "${{ secrets.SSH_PRIVATE_KEY }}"
- name: Set date
shell: msys2 {0}
shell: bash
run: |
export TZ=CET-1CEST
echo "DATE=$(date "+%Y%m%d-%H%M%S")" >> $GITHUB_ENV
- name: Deploy
env:
SSH_AUTH_SOCK: C:\ssh_agent.sock
shell: msys2 {0}
shell: bash
run: |
mkdir -p upload/snapshots/windows/${{ matrix.platform }}/${{ matrix.config }}
mkdir -p upload/snapshots/latest/windows/${{ matrix.platform }}/${{ matrix.config }}
Expand Down

0 comments on commit 7e2efd3

Please sign in to comment.