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 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" >> $env:GITHUB_ENV shell: bash - 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: "![GitHub Downloads (specific asset, specific tag)](https://img.shields.io/github/downloads/ChrisTitusTech/linutil/${{ env.VERSION }}/linutil)" append_body: false files: | ./linutil ./start.sh prerelease: true generate_release_notes: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}