Skip to content

fix: remove attrs from campus #9

fix: remove attrs from campus

fix: remove attrs from campus #9

Workflow file for this run

name: Docker Image CI
on:
push:
branches: ['master']
pull_request:
branches: ['master']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to docker.01-edu.org Registry
uses: docker/login-action@v1
with:
registry: docker.01-edu.org
username: ${{ secrets.USER_DOCKER_01EDU_ORG }}
password: ${{ secrets.SECRET_DOCKER_01EDU_ORG }}
- name: Build the GoQa tests Docker image
run: |
docker build ./go --file go/Dockerfile --tag ghcr.io/01-edu/test-goqa:latest
docker push ghcr.io/01-edu/test-goqa:latest