Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ci): rename docker build workflows #4947

Merged
merged 7 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# push-branch: Build only devel and prebuilt. TAGS: date, latest
# push-tag: Build all. TAGS: version, date, latest

name: docker-build-and-push-main-self-hosted
name: docker-build-and-push-self-hosted

on:
push:
Expand All @@ -26,7 +26,7 @@ jobs:
load-env:
uses: ./.github/workflows/load-env.yaml

docker-build-and-push-main-self-hosted:
docker-build-and-push:
needs: load-env
runs-on: [self-hosted, linux, ARM64]
strategy:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# push-branch: Build only devel and prebuilt. TAGS: date, latest
# push-tag: Build all. TAGS: version, date, latest

name: docker-build-and-push-main
name: docker-build-and-push

on:
push:
Expand All @@ -26,7 +26,7 @@ jobs:
load-env:
uses: ./.github/workflows/load-env.yaml

docker-build-and-push-main:
docker-build-and-push:
needs: load-env
runs-on: ubuntu-latest
strategy:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build-main-self-hosted
name: health-check-self-hosted

on:
schedule:
Expand All @@ -9,7 +9,7 @@ jobs:
load-env:
uses: ./.github/workflows/load-env.yaml

build-main-self-hosted:
docker-build:
needs: load-env
runs-on: [self-hosted, linux, ARM64]
strategy:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build-main
name: health-check

mitsudome-r marked this conversation as resolved.
Show resolved Hide resolved
on:
schedule:
Expand All @@ -9,7 +9,7 @@ jobs:
load-env:
uses: ./.github/workflows/load-env.yaml

build-main:
docker-build:
needs: load-env
runs-on: ubuntu-latest
strategy:
Expand Down
Loading