Bump version to 0.5.1
[ouch.git] / .github / workflows / manual-release.yml
blobf3867512e023a074856f248aa84525d896011f9e
1 name: manual-release
3 on:
4   workflow_dispatch:
5     inputs:
6       run_id:
7         description: Run id of the action run to pull artifacts from
8         required: true
10 jobs:
11   github-release:
12     name: github-release
13     runs-on: ubuntu-latest
14     steps:
15       - name: Checkout
16         uses: actions/checkout@v4
18       - name: Download artifacts
19         uses: dawidd6/action-download-artifact@v2
20         with:
21           path: artifacts
22           workflow: build-and-test.yml
23           run_id: ${{ github.event.inputs.run_id }}
25       - name: Package release assets
26         run: scripts/package-release-assets.sh
28       - name: Create release
29         uses: softprops/action-gh-release@v1
30         with:
31           draft: true
32           name: manual release ${{ github.event.inputs.run_id }}
33           files: release/ouch-*