Skip to content

Commit

Permalink
quay it (#8)
Browse files Browse the repository at this point in the history
* quay it

Signed-off-by: Martin Buchleitner <[email protected]>

---------

Signed-off-by: Martin Buchleitner <[email protected]>
  • Loading branch information
mabunixda authored Jan 12, 2024
1 parent c3fe401 commit 8a72670
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
if [[ -n "${{ secrets.IMAGE_REPO }}" ]]; then
IMAGE_REPO="${{ secrets.IMAGE_REPO }}"
fi
QUAY_IMAGE="quay.io/${IMAGE_REPO}/${IMAGE_NAME}-${{ matrix.container }}"
QUAY_IMAGE="quay.io/${IMAGE_REPO}/${IMAGE_NAME}:${{ matrix.container }}"
GHCR_IMAGE="ghcr.io/${{ github.repository }}-${{ matrix.container }}"
VERSION="dev"
if [[ '${{ needs.prebuild.outputs.version }}' != '' ]]; then
Expand All @@ -45,9 +45,9 @@ jobs:
if [ "${{ github.event_name }}" = "schedule" ]; then
VERSION="nightly"
fi
TAGS="${QUAY_IMAGE}:${VERSION},${GHCR_IMAGE}:${VERSION}"
TAGS="${QUAY_IMAGE},${GHCR_IMAGE}:${VERSION}"
if [[ $VERSION =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
TAGS="$TAGS,${QUAY_IMAGE}:latest,${GHCR_IMAGE}:latest"
TAGS="$TAGS,${GHCR_IMAGE}:latest"
fi
echo "settings tag ${TAGS}"
echo "tags=${TAGS}" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion dapr-distributed-calendar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ a different language. I'll detail the implementation below.
* **Event Service** (written in Go):
This service uses the statestore component Redis for storing and deleting events from memory. The code snippet shown below is from
`go_events.go` and demonstrates adding an event to the state store.
`go_events.go` and demonstrates adding an event to the state store.
```go
var data = make([]map[string]string, 1)
Expand Down

0 comments on commit 8a72670

Please sign in to comment.