forked from euantorano/docker-zig
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (37 loc) · 946 Bytes
/
nightly.yml
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
40
41
42
43
44
45
name: Nightly Build
on:
push:
pull_request:
schedule:
- cron: '0 1 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Cache last built versions
id: cache-build-versions
uses: actions/cache@v4
with:
path: |
last_master
last_version
key: ${{ runner.os }}-primes
- name: Install curl and jq
run: |
sudo apt-get install curl jq -y
- name: Run build script
run: |
bash -x build.sh