mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 13:15:21 +00:00
update linutil release
This commit is contained in:
parent
0e1a5ccebd
commit
0ac0d91fb8
36
.github/workflows/linutil.yml
vendored
36
.github/workflows/linutil.yml
vendored
|
@ -59,3 +59,39 @@ jobs:
|
||||||
file_pattern: "build/linutil"
|
file_pattern: "build/linutil"
|
||||||
add_options: '--force'
|
add_options: '--force'
|
||||||
if: success()
|
if: success()
|
||||||
|
|
||||||
|
- name: Extract Version
|
||||||
|
id: extract_version
|
||||||
|
run: |
|
||||||
|
version=$(date +"%Y.%m.%d")
|
||||||
|
echo "version=$version" >> $GITHUB_ENV
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Generate Release Notes
|
||||||
|
id: generate_notes
|
||||||
|
uses: release-drafter/release-drafter@v6
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
config-name: release-drafter.yml
|
||||||
|
version: ${{ env.version }}
|
||||||
|
|
||||||
|
- name: Create and Upload Release
|
||||||
|
id: create_release
|
||||||
|
uses: softprops/action-gh-release@v2
|
||||||
|
with:
|
||||||
|
tag_name: ${{ env.version }}
|
||||||
|
name: Pre-Release ${{ env.version }}
|
||||||
|
body: |
|
||||||
|
${{ steps.generate_notes.outputs.body }}
|
||||||
|
|
||||||
|
![GitHub Downloads (specific asset, specific tag)](https://img.shields.io/github/downloads/ChrisTitusTech/linutil/${{ env.version }}/linutil)
|
||||||
|
append_body: false
|
||||||
|
files: |
|
||||||
|
./build/linutil
|
||||||
|
./start.sh
|
||||||
|
./startdev.sh
|
||||||
|
prerelease: true
|
||||||
|
env:
|
||||||
|
version: ${{ env.version }}
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
55
.github/workflows/pre-release.yaml
vendored
55
.github/workflows/pre-release.yaml
vendored
|
@ -1,55 +0,0 @@
|
||||||
name: Pre-Release LinUtil
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write # Grant write permissions to contents
|
|
||||||
packages: write # Grant write permissions to packages
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch: # Manual trigger added
|
|
||||||
workflow_run:
|
|
||||||
workflows: ["LinUtil Release"]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-runspace:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout Repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Extract Version
|
|
||||||
id: extract_version
|
|
||||||
run: |
|
|
||||||
version=$(date +"%Y.%m.%d")
|
|
||||||
echo "version=$version" >> $GITHUB_ENV
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Generate Release Notes
|
|
||||||
id: generate_notes
|
|
||||||
uses: release-drafter/release-drafter@v6
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
config-name: release-drafter.yml
|
|
||||||
version: ${{ env.version }}
|
|
||||||
|
|
||||||
- name: Create and Upload Release
|
|
||||||
id: create_release
|
|
||||||
uses: softprops/action-gh-release@v2
|
|
||||||
with:
|
|
||||||
tag_name: ${{ env.version }}
|
|
||||||
name: Pre-Release ${{ env.version }}
|
|
||||||
body: |
|
|
||||||
${{ steps.generate_notes.outputs.body }}
|
|
||||||
|
|
||||||
![GitHub Downloads (specific asset, specific tag)](https://img.shields.io/github/downloads/ChrisTitusTech/linutil/${{ env.version }}/linutil)
|
|
||||||
append_body: false
|
|
||||||
files: |
|
|
||||||
./build/linutil
|
|
||||||
./start.sh
|
|
||||||
./startdev.sh
|
|
||||||
prerelease: true
|
|
||||||
env:
|
|
||||||
version: ${{ env.version }}
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
Loading…
Reference in New Issue
Block a user