mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-26 05:00:31 -05:00
Compare commits
2 Commits
dependabot
...
v1.0.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c51947419a | ||
|
|
ccb6a1f4a7 |
15
.github/workflows/workflow-publish-docker.yml
vendored
15
.github/workflows/workflow-publish-docker.yml
vendored
@@ -11,6 +11,14 @@ on:
|
|||||||
options:
|
options:
|
||||||
- "true"
|
- "true"
|
||||||
- "false"
|
- "false"
|
||||||
|
retag-lts:
|
||||||
|
description: 'Retag LTS Docker images'
|
||||||
|
required: true
|
||||||
|
type: choice
|
||||||
|
default: "false"
|
||||||
|
options:
|
||||||
|
- "true"
|
||||||
|
- "false"
|
||||||
release-tag:
|
release-tag:
|
||||||
description: 'Kestra Release Tag (by default, deduced with the ref)'
|
description: 'Kestra Release Tag (by default, deduced with the ref)'
|
||||||
required: false
|
required: false
|
||||||
@@ -179,6 +187,11 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
regctl image copy ${{ format('kestra/kestra:{0}{1}', steps.vars.outputs.tag, matrix.image.name) }} ${{ format('kestra/kestra:latest{0}', matrix.image.name) }}
|
regctl image copy ${{ format('kestra/kestra:{0}{1}', steps.vars.outputs.tag, matrix.image.name) }} ${{ format('kestra/kestra:latest{0}', matrix.image.name) }}
|
||||||
|
|
||||||
|
- name: Retag to LTS
|
||||||
|
if: startsWith(github.ref, 'refs/tags/v') && inputs.retag-lts == 'true'
|
||||||
|
run: |
|
||||||
|
regctl image copy ${{ format('kestra/kestra:{0}{1}', steps.vars.outputs.tag, matrix.image.name) }} ${{ format('kestra/kestra:latest-lts{0}', matrix.image.name) }}
|
||||||
|
|
||||||
end:
|
end:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs:
|
needs:
|
||||||
@@ -197,4 +210,4 @@ jobs:
|
|||||||
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}
|
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}
|
||||||
name: GitHub Actions
|
name: GitHub Actions
|
||||||
icon_emoji: ':github-actions:'
|
icon_emoji: ':github-actions:'
|
||||||
channel: 'C02DQ1A7JLR' # _int_git channel
|
channel: 'C02DQ1A7JLR' # _int_git channel
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
version=1.0.0-SNAPSHOT
|
version=1.0.0
|
||||||
|
|
||||||
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError
|
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError
|
||||||
org.gradle.parallel=true
|
org.gradle.parallel=true
|
||||||
|
|||||||
Reference in New Issue
Block a user