We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5866d23 commit febbb8aCopy full SHA for febbb8a
1 file changed
.github/workflows/build.yml
@@ -132,10 +132,18 @@ jobs:
132
username: ${{ secrets.DOCKER_USER }}
133
password: ${{ secrets.DOCKER_PASS }}
134
135
+ - uses: docker/login-action@v3
136
+ with:
137
+ registry: ghcr.io
138
+ username: ${{ secrets.GHCR_USER }}
139
+ password: ${{ secrets.GHCR_ACCESS_TOKEN }}
140
+
141
- name: Build and push latest image
142
uses: docker/build-push-action@v6
143
with:
144
context: .
145
file: Dockerfile.final
146
push: true
- tags: docker.io/rubylang/all-ruby:latest
147
+ tags: |
148
+ docker.io/rubylang/all-ruby:latest
149
+ ghcr.io/ruby/all-ruby:latest
0 commit comments