Skip to content
Merged
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
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ jobs:
ci-cd:
name: Build, Push and Deploy

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- name: Checkout
uses: actions/checkout@v3

- name: GitOps (build, push and deploy a new Docker image)
uses: Staffbase/gitops-github-action@v5
uses: Staffbase/gitops-github-action@v6.0
with:
docker-username: ${{ secrets.ARTIFACTORY_USERNAME }}
docker-password: ${{ secrets.ARTIFACTORY_PASSWORD }}
docker-username: ${{ secrets.HARBOR_USERNAME }}
docker-password: ${{ secrets.HARBOR_PASSWORD }}
docker-image: private/diablo-redbook
gitops-token: ${{ secrets.GITOPS_TOKEN }}
gitops-dev: |-
Expand All @@ -60,17 +60,17 @@ jobs:
ci-cd:
name: Build and Push

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- name: Checkout
uses: actions/checkout@v3

- name: GitOps (build and push a new Docker image)
uses: Staffbase/gitops-github-action@v5
uses: Staffbase/gitops-github-action@v6.0
with:
docker-username: ${{ secrets.ARTIFACTORY_USERNAME }}
docker-password: ${{ secrets.ARTIFACTORY_PASSWORD }}
docker-username: ${{ secrets.HARBOR_USERNAME }}
docker-password: ${{ secrets.HARBOR_PASSWORD }}
docker-image: private/diablo-redbook
```

Expand All @@ -85,14 +85,14 @@ jobs:
ci-cd:
name: Deploy

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- name: Checkout
uses: actions/checkout@v3

- name: GitOps (deploy a new Docker image)
uses: Staffbase/gitops-github-action@v5
uses: Staffbase/gitops-github-action@v6.0
with:
docker-image: private/diablo-redbook
gitops-token: ${{ secrets.GITOPS_TOKEN }}
Expand Down