Skip to content
Closed
Show file tree
Hide file tree
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
36 changes: 36 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build
run-name: Build all
on: [push]
jobs:
build:
runs-on: ubuntu-latest
env:
UPLOAD_KEY: ${{ secrets.UPLOAD_KEY }}
steps:
- uses: actions/checkout@v4
- run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_ENV
- run: wget -q https://dl.google.com/go/go1.13.4.linux-amd64.tar.gz
- run: sudo tar -xf go1.13.4.linux-amd64.tar.gz
- run: sudo mv go /usr/local
- run: echo "GOPATH=$HOME/go" >> $GITHUB_ENV
- run: echo "GOROOT=/usr/local/go" >> $GITHUB_ENV
- run: echo "PATH=$GOPATH/bin:$GOROOT/bin:$PATH" >> $GITHUB_ENV
- run: mkdir -p $HOME/go/src
- run: mkdir -p $HOME/go/bin
- run: go get "github.com/gobuffalo/packr/v2/packr2"
id: prepare_backend
- uses: actions/setup-node@v4
with:
node-version: '16.x'
- run: cd webmanager && npm install && npm run-script build-prod && cd ..
id: build_frontend
- run: make
id: build_backend
if: ${{ success() }}
- name: Upload artifacts
id: upload
env:
UPLOAD_KEY: ${{ secrets.UPLOAD_KEY }}
UPLOAD_URL: ${{ vars.UPLOAD_URL }}
if: ${{ success() }}
run: cd dist && find * -type f -exec ./scripts/upload-builds.sh
1 change: 1 addition & 0 deletions scripts/upload-builds.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
echo 'Uploading @{}' \; -exec curl -4 -F 'file=@{}' -F "path=$branch/{}" -F "key=$UPLOAD_KEY" "$UPLOAD_URL" \;;