-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (35 loc) · 975 Bytes
/
push-dev.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
on:
push:
branches-ignore:
- 'main'
jobs:
release:
name: release
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
# Checkout code
- uses: actions/checkout@v3
with:
fetch-depth: 0
# Fetch tags
- run: git fetch --force --tags
# Set version environment
- name: Set VERSION
run: |
echo "VERSION=`git describe --tags || echo 0.0.0`" >> $GITHUB_ENV
# Build web ui
- name: Use Node.js 21.x
uses: actions/setup-node@v3
with:
node-version: 21.x
- run: yarn install
working-directory: ./html
- run: yarn build --outDir ../hupload/admin-ui
working-directory: ./html
# Build docker image
- uses: ko-build/[email protected]
- run: GOFLAGS="-ldflags=-X=main.version=$VERSION" ko build -B --platform all --sbom none -t dev
working-directory: ./hupload