Skip to content

Commit

Permalink
ci: Configure binary releases for amd64 + arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
ivov committed Nov 19, 2024
1 parent 63811cf commit 55a633e
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 3 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
on:
release:
types: [created]

jobs:
releases-matrix:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- goos: linux
goarch: amd64
- goos: linux
goarch: arm64

steps:
- uses: actions/[email protected]

- uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: 1.23
binary_name: task-runner-launcher
project_path: ./cmd/launcher
sha256sum: true
extra_files: README.md LICENSE.md LICENSE_EE.md
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# n8n-launcher
# task-runner-launcher

CLI utility to launch [n8n task runners](https://docs.n8n.io/PENDING).

```sh
./n8n-launcher launch -type javascript
./task-runner-launcher launch -type javascript
2024/11/15 13:53:33 Starting to execute `launch` command...
2024/11/15 13:53:33 Loaded config file loaded with a single runner config
2024/11/15 13:53:33 Changed into working directory: /Users/ivov/Development/n8n-launcher/bin
Expand Down Expand Up @@ -73,7 +73,7 @@ Once setup is complete, start the launcher:
```sh
export N8N_RUNNERS_AUTH_TOKEN=...
export N8N_RUNNERS_N8N_URI=...
./n8n-launcher javascript
./task-runner-launcher javascript
```

## Development
Expand Down

0 comments on commit 55a633e

Please sign in to comment.