Skip to content

Commit

Permalink
ci: build runner attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
markjoshwel committed Nov 6, 2023
1 parent 73982e1 commit e40c455
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: manual build

on:
push:
tags:
- 'v*'
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
ref: main
- uses: uraimo/run-on-arch-action@v2
name: Run commands
id: runcmd
with:
arch: aarch64
distro: alpine_latest
githubToken: ${{ github.token }}
run: |
pkg install go
go build -o dist/s+ow-whatsapp-bridge
- uses: actions/upload-artifact@v3
with:
name: wheels
path: dist/
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
spow-whatsapp-bridge
mdtest.db
dist

# nix
.devbox
Expand Down

0 comments on commit e40c455

Please sign in to comment.