-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (46 loc) · 1.57 KB
/
apko_build.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
50
51
52
---
name: Create and publish a container image
on:
push:
branches:
- main
workflow_dispatch:
schedule:
# run every Monday at 01:30
- cron: '30 1 * * 1'
# Defines two custom environment variables for the workflow. These are used for
# the Container registry domain, and a name for the Docker image that this
# workflow builds.
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
# There is a single job in this workflow. It's configured to run on the latest
# available version of Ubuntu.
jobs:
build-and-push-image:
runs-on: ubuntu-latest
# Sets the permissions granted to the `GITHUB_TOKEN` for the actions in
# this job.
permissions:
contents: read
packages: write
attestations: write
steps:
- id: pluto_version
uses: pozetroninc/github-action-get-latest-release@master
with:
repository: FairwindsOps/pluto/
excludes: prerelease, draft
token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout repository
uses: actions/checkout@v4
# https://github.com/chainguard-images/actions/tree/main/apko-publish
- id: wolfi-pluto
uses: distroless/actions/apko-publish@main
with:
# Config is the configuration file to use for the image build.
# Optional, will use .apko.yaml without a defined one.
config: wolfi-pluto.yaml
# Tag is the tag that will be published.
# Required.
tag: ghcr.io/kastl-ars/wolfi-pluto:latest ghcr.io/kastl-ars/wolfi-pluto:${{ steps.pluto_version.outputs.release }}