Skip to content

Commit

Permalink
Merge pull request #31 from andrew-waters/example-gcr
Browse files Browse the repository at this point in the history
Adds GCR example
  • Loading branch information
zappy-shu authored Apr 23, 2020
2 parents e5e36c4 + 4ca0e62 commit 3ff8147
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,4 +192,16 @@ with:
repository: myorg/myrepository
tag_with_ref: true
target: mytarget
```
```

The following will build the root Dockerfile, tag the image as `myorg/myrepository:latest`, log in to Google Container Registry using GitHub secrets (where `DOCKER_PASSWORD` is a [JSON key](https://cloud.google.com/container-registry/docs/advanced-authentication#json-key)), and push the image to the CGR repository `myorg/myrepository`:

```yaml
uses: docker/build-push-action@v1
with:
username: _json_key
password: ${{ secrets.DOCKER_PASSWORD }}
registry: gcr.io
repository: myorg/myrepository
tags: latest
```

0 comments on commit 3ff8147

Please # to comment.