Skip to content

Commit

Permalink
Fix symlinks for mac platform (#184)
Browse files Browse the repository at this point in the history
* Fix symlinks for mac platform

* fix post check
  • Loading branch information
tianfeng92 authored May 16, 2022
1 parent d6f3368 commit 94a84bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ jobs:

- name: Archive bundle
if: ${{ steps.prep.outputs.asset_id == '' }}
run: zip -r sauce-cypress-macos-amd64.zip bundle/
run: zip --symlinks -r sauce-cypress-macos-amd64.zip bundle/

- name: Upload Release Asset
if: ${{ steps.prep.outputs.asset_id == '' }}
Expand Down Expand Up @@ -355,7 +355,7 @@ jobs:
- name: cloud tests
working-directory: ./tests/post-release
run: |
npx saucectl run --runner-version "github-release: ${{ steps.parse_version.outputs.version }}" --config ./.sauce/config_win.yml
npx saucectl run --runner-version "url: https://github.com/saucelabs/sauce-cypress-runner/releases/download/${{ steps.parse_version.outputs.version }}/sauce-cypress-runner-win-amd64.zip" --config ./.sauce/config_win.yml
post-release-macos-tests:
runs-on: ubuntu-latest
Expand All @@ -378,5 +378,5 @@ jobs:
- name: cloud tests
working-directory: ./tests/post-release
run: |
npx saucectl run --runner-version "github-release: ${{ steps.parse_version.outputs.version }}" --config ./.sauce/config_mac.yml
npx saucectl run --runner-version "url: https://github.com/saucelabs/sauce-cypress-runner/releases/download/${{ steps.parse_version.outputs.version }}/sauce-cypress-macos-amd64.zip" --config ./.sauce/config_mac.yml

0 comments on commit 94a84bd

Please sign in to comment.