forked from crops/poky-container
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (43 loc) · 1.09 KB
/
build-test-deploy.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
46
47
48
49
name: poky-container build and test
on:
push:
branches:
- master
pull_request:
# Allow for manually running
workflow_dispatch:
# Run at 01:42 UTC every Saturday
schedule:
- cron: '42 1 * * 6'
jobs:
build-test-deploy:
runs-on: ubuntu-24.04-2core-arm64
permissions:
packages: write
strategy:
fail-fast: false
matrix:
base_distro: [
debian-12,
]
targetplatform: [
linux/arm64
]
env:
BASE_DISTRO: ${{ matrix.base_distro }}
TARGETPLATFORM: ${{ matrix.targetplatform }}
REPO_URL: ghcr.io
REPO: jackpocket/crops/poky
DEFAULT_DISTRO: debian-12
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
GHCR_USERNAME: ${{ github.actor }}
GHCR_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
# Build and test the images
- name: Run build-and-test.sh
run: ./build-and-test.sh
# Deploy the images
- name: Deploy
run: bash deploy.sh