Update justfile and go.mod #506
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
name: Build | |
on: | |
push: | |
branches: | |
- v2 | |
jobs: | |
test: | |
runs-on: [ self-hosted, macOS, ARM64 ] | |
steps: | |
- 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-arm64: | |
needs: test | |
runs-on: [ self-hosted, macOS, ARM64 ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: just release darwin-arm64 | |
- name: Deploy nightly release arm64 | |
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-arm64.dmg # path to archive to upload | |
asset_name: wox-mac-arm64-$$.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-windows: | |
needs: test | |
runs-on: [ self-hosted, Windows ] | |
steps: | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: just release windows | |
- name: Deploy nightly release | |
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-windows-amd64.exe # path to archive to upload | |
asset_name: wox-windows-amd64-$$.exe # name to upload the release as, use $$ to insert date (YYYYMMDD) and 6 letter commit hash | |
asset_content_type: application/x-msdownload # required by GitHub API | |
max_releases: 1 | |
build-linux: | |
needs: test | |
runs-on: [ self-hosted, Linux ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: just release linux | |
- name: Deploy nightly release | |
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-linux-amd64 # path to archive to upload | |
asset_name: wox-linux-amd64-$$ # name to upload the release as, use $$ to insert date (YYYYMMDD) and 6 letter commit hash | |
asset_content_type: application/x-msdownload # required by GitHub API | |
max_releases: 1 |