Skip to content

Commit

Permalink
github actions didn't like the template string there
Browse files Browse the repository at this point in the history
  • Loading branch information
holic committed Sep 5, 2023
1 parent c098716 commit 0c88c37
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ on:
branches: ["main", "holic/dockerfile-ci"]
workflow_dispatch:

env:
REGISTRY: ghcr.io

jobs:
docker:
name: Build and push image
Expand All @@ -18,17 +15,17 @@ jobs:
strategy:
matrix:
include:
- image: ${{ env.REGISTRY }}/latticexyz/mud
- image: ghcr.io/latticexyz/mud
target: mud
- image: ${{ env.REGISTRY }}/latticexyz/store-indexer
- image: ghcr.io/latticexyz/store-indexer
target: store-indexer
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
Expand Down

0 comments on commit 0c88c37

Please sign in to comment.