-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable macos amd64 build workflows, because we have no macos amd64 m…
…achines now
- Loading branch information
1 parent
68e25e4
commit 2d55b6a
Showing
1 changed file
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,22 +12,22 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- name: Test | ||
run: just test | ||
build-macos-amd64: | ||
needs: test | ||
runs-on: [ self-hosted, macOS, X64 ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build | ||
run: just release darwin-amd64 | ||
- name: Deploy nightly release amd64 | ||
uses: WebFreak001/[email protected] | ||
with: | ||
upload_url: https://uploads.github.com/repos/Wox-launcher/Wox/releases/127182165/assets{?name,label} | ||
release_id: 127182165 | ||
asset_path: ./Release/wox-mac-amd64.dmg # path to archive to upload | ||
asset_name: wox-mac-amd64-$$.dmg # name to upload the release as, use $$ to insert date (YYYYMMDD) and 6 letter commit hash | ||
asset_content_type: application/x-elf # required by GitHub API | ||
max_releases: 1 | ||
# build-macos-amd64: | ||
# needs: test | ||
# runs-on: [ self-hosted, macOS, X64 ] | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - name: Build | ||
# run: just release darwin-amd64 | ||
# - name: Deploy nightly release amd64 | ||
# uses: WebFreak001/[email protected] | ||
# with: | ||
# upload_url: https://uploads.github.com/repos/Wox-launcher/Wox/releases/127182165/assets{?name,label} | ||
# release_id: 127182165 | ||
# asset_path: ./Release/wox-mac-amd64.dmg # path to archive to upload | ||
# asset_name: wox-mac-amd64-$$.dmg # name to upload the release as, use $$ to insert date (YYYYMMDD) and 6 letter commit hash | ||
# asset_content_type: application/x-elf # required by GitHub API | ||
# max_releases: 1 | ||
build-macos-arm64: | ||
needs: test | ||
runs-on: [ self-hosted, macOS, ARM64 ] | ||
|