-
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (45 loc) · 1.27 KB
/
release-after.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
name: release-after
on:
workflow_call:
inputs:
plan:
required: true
type: string
workflow_dispatch:
inputs:
plan:
description: plan json (only used to extract version)
required: true
type: string
default: '{"releases":[{"app_version":"0.2.2"}]}'
permissions:
contents: read
packages: write
jobs:
container-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: version
shell: bash
run: |
cat >plan.json << EOF
${{ inputs.plan }}
EOF
VERSION=$(yq -r '.releases[0].app_version' < plan.json)
echo "VERSION=$VERSION" >> "$GITHUB_OUTPUT"
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v6
with:
push: true
build-args: VERSION=${{ steps.version.outputs.VERSION }}
platforms: linux/amd64,linux/arm64
target: cdviz-collector
tags: ghcr.io/cdviz-dev/cdviz-collector:${{ steps.version.outputs.VERSION }}
# cache-from: type=gha
# cache-to: type=gha,mode=max