2022-12-17 00:46:24 +00:00
|
|
|
name: nightly-build
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
# Daily at 2:48am
|
|
|
|
- cron: '48 2 * * *'
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@main
|
|
|
|
with:
|
|
|
|
go-version: 1.19.4
|
|
|
|
id: go
|
2022-12-19 23:22:45 +00:00
|
|
|
- name: Setup docker scan
|
|
|
|
run: |
|
|
|
|
mkdir -p ~/.docker/cli-plugins && \
|
|
|
|
curl https://github.com/docker/scan-cli-plugin/releases/latest/download/docker-scan_linux_amd64 -L -s -S -o ~/.docker/cli-plugins/docker-scan &&\
|
|
|
|
chmod +x ~/.docker/cli-plugins/docker-scan
|
2022-12-17 00:46:24 +00:00
|
|
|
- name: Code checkout
|
|
|
|
uses: actions/checkout@master
|
|
|
|
- name: Publish
|
|
|
|
run: |
|
|
|
|
LATEST_TAG=nightly PKG_TAG=nightly make publish
|