Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build and push quarry image #1

Merged
merged 4 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/build-and-push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---

name: Build and Push quarry image

'on':
pull_request:

jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Quay.io
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_QUARRY_USER }}
password: ${{ secrets.QUAY_QUARRY_PASSWORD }}

- name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
push: true
context: .
tags: quay.io/wikimedia-quarry/quarry:pr-${{ github.event.number }}

- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
1 change: 1 addition & 0 deletions T316958
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test
vivian-rook marked this conversation as resolved.
Show resolved Hide resolved
Loading