mirror of
https://github.com/Baipyrus/ProxySwitcher.git
synced 2024-12-26 04:31:45 +00:00
test: specifying artifact download path
This commit is contained in:
parent
7bad3a40be
commit
de2bfbe621
20
.github/workflows/publish.yml
vendored
20
.github/workflows/publish.yml
vendored
@ -7,16 +7,16 @@ on:
|
||||
push:
|
||||
tags: 'v*'
|
||||
|
||||
env:
|
||||
GOOS: windows
|
||||
GOARCH: amd64
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
env:
|
||||
GOOS: windows
|
||||
GOARCH: amd64
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Get GoLang version
|
||||
@ -45,15 +45,19 @@ jobs:
|
||||
needs: build
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Download artifact
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: ProxySwitcher
|
||||
path: '${{ github.workspace }}/artifacts/'
|
||||
|
||||
- name: Create release
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
gh release create "${{ github.event.workflow_run.head_ref }}" \
|
||||
--title "Release ${{ github.event.workflow_run.head_ref }}" \
|
||||
ProxySwitcher
|
||||
gh release create "${{ github.ref_name }}" \
|
||||
--title "Release ${{ github.ref_name }}" \
|
||||
'${{ github.workspace }}/artifacts/'
|
||||
|
Loading…
Reference in New Issue
Block a user