mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-26 14:00:23 -05:00
Compare commits
4 Commits
dependabot
...
v0.17.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
381d1b381f | ||
|
|
72a428a439 | ||
|
|
7447e61dbc | ||
|
|
45ffc3cc22 |
29
.github/workflows/docker.yml
vendored
29
.github/workflows/docker.yml
vendored
@@ -7,14 +7,7 @@ on:
|
|||||||
description: 'Retag latest Docker images'
|
description: 'Retag latest Docker images'
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
options:
|
default: "true"
|
||||||
- "true"
|
|
||||||
- "false"
|
|
||||||
skip-test:
|
|
||||||
description: 'Skip test'
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
default: "false"
|
|
||||||
options:
|
options:
|
||||||
- "true"
|
- "true"
|
||||||
- "false"
|
- "false"
|
||||||
@@ -125,6 +118,16 @@ jobs:
|
|||||||
packages: python3 python3-venv python-is-python3 python3-pip nodejs npm curl zip unzip
|
packages: python3 python3-venv python-is-python3 python3-pip nodejs npm curl zip unzip
|
||||||
python-libs: kestra
|
python-libs: kestra
|
||||||
steps:
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
# Vars
|
||||||
|
- name: Set image name
|
||||||
|
id: vars
|
||||||
|
run: |
|
||||||
|
TAG=${GITHUB_REF#refs/*/}
|
||||||
|
echo "tag=${TAG}" >> $GITHUB_OUTPUT
|
||||||
|
echo "plugins=${{ matrix.image.plugins }}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
# Download release
|
# Download release
|
||||||
- name: Download release
|
- name: Download release
|
||||||
uses: robinraju/release-downloader@v1.10
|
uses: robinraju/release-downloader@v1.10
|
||||||
@@ -137,14 +140,6 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cp build/executable/* docker/app/kestra && chmod +x docker/app/kestra
|
cp build/executable/* docker/app/kestra && chmod +x docker/app/kestra
|
||||||
|
|
||||||
# Vars
|
|
||||||
- name: Set image name
|
|
||||||
id: vars
|
|
||||||
run: |
|
|
||||||
TAG=${GITHUB_REF#refs/*/}
|
|
||||||
echo "tag=${TAG}" >> $GITHUB_OUTPUT
|
|
||||||
echo "plugins=${{ matrix.image.plugins }}" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
# Docker setup
|
# Docker setup
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v3
|
||||||
@@ -179,7 +174,7 @@ jobs:
|
|||||||
- name: Retag to latest
|
- name: Retag to latest
|
||||||
if: github.event.inputs.retag-latest == 'true'
|
if: github.event.inputs.retag-latest == 'true'
|
||||||
run: |
|
run: |
|
||||||
regctl image copy ${{ format('kestra/kestra:{0}{1}', steps.vars.outputs.tag, matrix.image.name) }} ${{ format('kestra/kestra:latest{1}', 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) }}
|
||||||
|
|
||||||
end:
|
end:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
@@ -454,7 +454,7 @@ subprojects {
|
|||||||
}
|
}
|
||||||
|
|
||||||
maven.pom {
|
maven.pom {
|
||||||
description 'The modern, scalable orchestrator & scheduler open source platform'
|
description = 'The modern, scalable orchestrator & scheduler open source platform'
|
||||||
|
|
||||||
developers {
|
developers {
|
||||||
developer {
|
developer {
|
||||||
|
|||||||
Reference in New Issue
Block a user