Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
fix: made versions uniform and fix publish in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Kruggel committed Nov 30, 2023
1 parent 5d496e0 commit 7c4f18f
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,20 @@ jobs:
registry1-password: ${{ secrets.REGISTRY1_PASSWORD }}

- name: Build and publish dev-dependency gitlab-postgres package
run: build/zarf package publish zarf-package-gitlab-postgres-amd64-*.tar.zst oci://ghcr.io/defenseunicorns/uds-capability/gitlab/dev-dependency --no-progress
run: ./zarf package publish zarf-package-gitlab-postgres-amd64-*.tar.zst oci://ghcr.io/defenseunicorns/uds-capability/gitlab/dev-dependency --no-progress
working-directory: build

- name: Build and publish dev-dependency gitlab-redis package
run: build/zarf package publish zarf-package-gitlab-redis-amd64-*.tar.zst oci://ghcr.io/defenseunicorns/uds-capability/gitlab/dev-dependency --no-progress
run: ./zarf package publish zarf-package-gitlab-redis-amd64-*.tar.zst oci://ghcr.io/defenseunicorns/uds-capability/gitlab/dev-dependency --no-progress
working-directory: build

- name: Build and publish dev-dependency gitlab-minio package
run: build/zarf package publish zarf-package-gitlab-minio-amd64-*.tar.zst oci://ghcr.io/defenseunicorns/uds-capability/gitlab/dev-dependency --no-progress
run: ./zarf package publish zarf-package-gitlab-minio-amd64-*.tar.zst oci://ghcr.io/defenseunicorns/uds-capability/gitlab/dev-dependency --no-progress
working-directory: build

- name: Publish gitlab package
run: build/zarf package publish zarf-package-gitlab-amd64-*.tar.zst oci://ghcr.io/defenseunicorns/uds-capability --no-progress
run: ./zarf package publish zarf-package-gitlab-amd64-*.tar.zst oci://ghcr.io/defenseunicorns/uds-capability --no-progress
working-directory: build

- name: Publish gitlab skeleton
run: build/zarf package publish . oci://ghcr.io/defenseunicorns/uds-capability --no-progress
4 changes: 3 additions & 1 deletion utils/pkg-deps/gitlab/minio/zarf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
kind: ZarfPackageConfig
metadata:
name: gitlab-minio
version: "0.0.2"
# x-release-please-start-version
version: "0.1.8"
# x-release-please-end
architecture: amd64

components:
Expand Down
4 changes: 3 additions & 1 deletion utils/pkg-deps/gitlab/postgres/zarf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
kind: ZarfPackageConfig
metadata:
name: gitlab-postgres
version: "0.0.2"
# x-release-please-start-version
version: "0.1.8"
# x-release-please-end
architecture: amd64

components:
Expand Down
4 changes: 3 additions & 1 deletion utils/pkg-deps/gitlab/redis/zarf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
kind: ZarfPackageConfig
metadata:
name: gitlab-redis
version: "0.0.2"
# x-release-please-start-version
version: "0.1.8"
# x-release-please-end
architecture: amd64

components:
Expand Down
4 changes: 3 additions & 1 deletion utils/pkg-deps/namespaces/zarf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ kind: ZarfPackageConfig
metadata:
name: gitlab-namespaces
description: "package used to deploy needed namespaces"
version: "0.0.1"
# x-release-please-start-version
version: "0.1.8"
# x-release-please-end
architecture: amd64

components:
Expand Down

0 comments on commit 7c4f18f

Please sign in to comment.