Skip to content

Commit

Permalink
create release on manual build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tuler committed Aug 15, 2024
1 parent 6140ffd commit b79851d
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,23 @@ jobs:
- name: build
run: bin/local_build.sh -r ${{ github.event.inputs.arch }} -v ${{ github.event.inputs.version }}
working-directory: unofficial-builds
env:
workdir: build

- name: save logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: logs
path: build/logs

- name: save download
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: download
path: staging/release/${{ github.event.inputs.version }}/

- name: Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.event.inputs.version }}
files: staging/release/${{ github.event.inputs.version }}/*

0 comments on commit b79851d

Please sign in to comment.