Skip to content

Commit

Permalink
Change invalid tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
ClausKlein committed Aug 7, 2023
1 parent e053dc0 commit 5d09a5d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: handle manual workflow start and prepare docker image tag(s)
id: docker-tags
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y libboost-thread-dev ninja-build

# use GitHub cache to cache dependencies
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: "**/cpm_modules"
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

#
# configure and build in GitHub CI as smoke test
Expand All @@ -31,7 +31,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y libboost-thread-dev ninja-build

# use GitHub cache to cache dependencies
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: "**/cpm_modules"
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
Expand All @@ -58,6 +58,6 @@ jobs:
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: false
tags: ${{ secrets.DOCKERHUB_USERNAME }}/greeter-webapi:latest
tags: greeter-webapi:ci
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit 5d09a5d

Please sign in to comment.