From 6d306d433bce8901ca6189b234125e7ae2697ed2 Mon Sep 17 00:00:00 2001 From: Karel Suta Date: Thu, 13 Jul 2023 10:20:00 +0200 Subject: [PATCH] Test commit to check secrets --- .github/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 000000000..34062c8a0 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +# This workflow will build the CodeFlare Operator image and push it to the project-codeflare image registry + +name: Test +on: + pull_request: + branches: + - main + +jobs: + push: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Login to Quay.io + uses: redhat-actions/podman-login@v1 + with: + username: ${{ secrets.QUAY_ID }} + password: ${{ secrets.QUAY_TOKEN }} + registry: quay.io