feat: outputs meta tags
This commit is contained in:
parent
88cc232a24
commit
2f645e4029
1 changed files with 9 additions and 3 deletions
|
@ -2,6 +2,9 @@
|
||||||
name: Build
|
name: Build
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
secrets:
|
||||||
|
M8A_ORG_BOT_PACKAGE_TOKEN:
|
||||||
|
required: true
|
||||||
inputs:
|
inputs:
|
||||||
context:
|
context:
|
||||||
type: string
|
type: string
|
||||||
|
@ -11,9 +14,10 @@ on:
|
||||||
type: string
|
type: string
|
||||||
default: Dockerfile
|
default: Dockerfile
|
||||||
required: false
|
required: false
|
||||||
secrets:
|
outputs:
|
||||||
M8A_ORG_BOT_PACKAGE_TOKEN:
|
tags:
|
||||||
required: true
|
description: "Docker image tags"
|
||||||
|
value: ${{ jobs.build.outputs.tags }}
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
@ -21,6 +25,8 @@ concurrency:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
outputs:
|
||||||
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
# see https://code.forgejo.org/forgejo/act#runners
|
# see https://code.forgejo.org/forgejo/act#runners
|
||||||
|
|
Loading…
Add table
Reference in a new issue