-
-
Notifications
You must be signed in to change notification settings - Fork 66
26 lines (23 loc) · 666 Bytes
/
docker.yml
File metadata and controls
26 lines (23 loc) · 666 Bytes
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
name: Manual Docker build
on:
workflow_dispatch:
inputs:
fief_version:
description: "Fief version"
required: true
tags:
description: "Tags (following Docker metadata syntax)"
required: true
jobs:
docker-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker image
uses: ./.github/actions/docker-build
with:
fief_version: ${{ inputs.fief_version }}
tags: ${{ inputs.tags }}
registry: ghcr.io
image_name: ${{ github.repository }}
github_token: ${{ secrets.GITHUB_TOKEN }}