Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
zxdstyle committed Sep 29, 2024
1 parent 312997b commit ef6443d
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions .github/workflows/release_binary.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,21 @@ jobs:
run: |
ldd builds/pixfolio-linux-amd64
- uses: "marvinpinto/action-automatic-releases@latest"
- name: Create Github Release
id: create_release
uses: "softprops/action-gh-release@v1"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: true
title: "Pixfolio"
files: |
builds/pixfolio-linux-amd64
builds/pixfolio-linux-amd64.sha256
builds/pixfolio-linux-arm64
builds/pixfolio-linux-arm64.sha256
tag_name: ${{ github.ref }}
name: Pixfolio ${{ github.ref }}
draft: false
prerelease: false

- name: Upload Release Asset
id: upload-release-asset
uses: alexellis/upload-assets@0.4.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
asset_paths: '["builds/_*"]'

0 comments on commit ef6443d

Please sign in to comment.