fix(pikpak): remove oauth2 method (#7567 close #7545) #3441
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: [ 'main' ] | |
pull_request: | |
branches: [ 'main' ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
go-version: [ '1.21' ] | |
name: Build | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: benjlevesque/short-sha@v3.0 | |
id: short-sha | |
- name: Install dependencies | |
run: | | |
sudo snap install zig --classic --beta | |
docker pull crazymax/xgo:latest | |
go install github.com/crazy-max/xgo@latest | |
sudo apt install upx | |
- name: Build | |
run: | | |
bash build.sh dev | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: alist_${{ env.SHA }} | |
path: dist |