mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-02-09 15:27:11 +00:00
24 lines
462 B
YAML
24 lines
462 B
YAML
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
|
|
- name: Code checkout
|
|
uses: actions/checkout@master
|
|
- name: Publish
|
|
run: |
|
|
LATEST_TAG=nightly PKG_TAG=nightly make publish
|