Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
xypwn committed Mar 15, 2024
1 parent c123108 commit 358eb3b
Showing 1 changed file with 47 additions and 46 deletions.
93 changes: 47 additions & 46 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,48 @@
name: build

on:
push:
branches:
- 'master'
tags:
- 'v*'
pull_request:

jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: 1.20.0
cache: true
- run: go test -v ./...
- uses: actions/upload-artifact@v4
with:
name: filediver-win64
path: filediver.exe
release:
runs-on: ubuntu-latest
needs: build-windows
steps:
- uses: actions/download-artifact@v4
with:
name: filediver-win64
- uses: actions/create-release@v1
id: create-new-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.run_number }}
release_name: Release ${{ github.run_number }}
- uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-new-release.outputs.upload_url }}
asset_path: ./filediver.exe
name: build

on:
push:
branches:
- 'master'
tags:
- 'v*'
pull_request:

jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: 1.20.0
cache: true
- run: go test -v ./...
- run: go build
- uses: actions/upload-artifact@v4
with:
name: filediver-win64
path: filediver.exe
release:
runs-on: ubuntu-latest
needs: build-windows
steps:
- uses: actions/download-artifact@v4
with:
name: filediver-win64
- uses: actions/create-release@v1
id: create-new-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.run_number }}
release_name: Release ${{ github.run_number }}
- uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-new-release.outputs.upload_url }}
asset_path: ./filediver.exe
asset_name: filediver-win64.exe

0 comments on commit 358eb3b

Please sign in to comment.