test: specifying artifact download path

This commit is contained in:
Baipyrus 2024-09-01 16:08:24 +02:00
parent 7bad3a40be
commit de2bfbe621

View File

@ -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/'