Skip to content

Mask token in gh workflows - 3rd try #21

Mask token in gh workflows - 3rd try

Mask token in gh workflows - 3rd try #21

Workflow file for this run

name: ubuntu-build
on:
push:
branches:
- "main"
jobs:
image-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- 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_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push ubuntu
uses: docker/build-push-action@v5
with:
context: ubuntu
push: true
tags: quay.io/mloriedo/cloud-dev-images:ubuntu