Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ncc-release.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flatlock-release
run-name: >
(#${{ github.run_number }}) flatlock release v${{ inputs.version }}
(#${{ github.run_number }}) flatlock release ${{ inputs.version }}

on:
workflow_dispatch:
Expand Down Expand Up @@ -99,8 +99,8 @@ jobs:
- name: Create GitHub Release
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1
with:
tag_name: v${{ inputs.version }}
name: flatlock v${{ inputs.version }}
tag_name: ${{ inputs.version }}
name: flatlock ${{ inputs.version }}
prerelease: ${{ inputs.prerelease }}
generate_release_notes: true
files: |
Expand All @@ -111,7 +111,7 @@ jobs:
binaries/flatcover-linux-arm64
binaries/flatcover-darwin-arm64
body: |
## flatlock v${{ inputs.version }}
## flatlock ${{ inputs.version }}

The Matlock of lockfile parsers - extracts packages without building dependency graphs.

Expand All @@ -128,20 +128,20 @@ jobs:

```bash
# Linux (x64)
curl -L -o flatlock https://github.com/${{ github.repository }}/releases/download/v${{ inputs.version }}/flatlock-linux-x64
curl -L -o flatcover https://github.com/${{ github.repository }}/releases/download/v${{ inputs.version }}/flatcover-linux-x64
curl -L -o flatlock https://github.com/${{ github.repository }}/releases/download/${{ inputs.version }}/flatlock-linux-x64
curl -L -o flatcover https://github.com/${{ github.repository }}/releases/download/${{ inputs.version }}/flatcover-linux-x64
chmod +x flatlock flatcover
mv flatlock flatcover /usr/local/bin/

# Linux (ARM64)
curl -L -o flatlock https://github.com/${{ github.repository }}/releases/download/v${{ inputs.version }}/flatlock-linux-arm64
curl -L -o flatcover https://github.com/${{ github.repository }}/releases/download/v${{ inputs.version }}/flatcover-linux-arm64
curl -L -o flatlock https://github.com/${{ github.repository }}/releases/download/${{ inputs.version }}/flatlock-linux-arm64
curl -L -o flatcover https://github.com/${{ github.repository }}/releases/download/${{ inputs.version }}/flatcover-linux-arm64
chmod +x flatlock flatcover
mv flatlock flatcover /usr/local/bin/

# macOS (Apple Silicon)
curl -L -o flatlock https://github.com/${{ github.repository }}/releases/download/v${{ inputs.version }}/flatlock-darwin-arm64
curl -L -o flatcover https://github.com/${{ github.repository }}/releases/download/v${{ inputs.version }}/flatcover-darwin-arm64
curl -L -o flatlock https://github.com/${{ github.repository }}/releases/download/${{ inputs.version }}/flatlock-darwin-arm64
curl -L -o flatcover https://github.com/${{ github.repository }}/releases/download/${{ inputs.version }}/flatcover-darwin-arm64
chmod +x flatlock flatcover
mv flatlock flatcover /usr/local/bin/
```
Expand Down
Loading