Skip to content

Fix teacher view not showing in navbar in some cases #195

Fix teacher view not showing in navbar in some cases

Fix teacher view not showing in navbar in some cases #195

Workflow file for this run

name: Staging release
on:
push:
branches:
- master
jobs:
test:
uses: ./.github/workflows/test.yml
secrets: inherit
build-and-push:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v3
- name: Build image
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: norppa
tags: staging ${{ github.sha }}
containerfiles: |
./Dockerfile
build-args: |
BASE_PATH=/norppa
GIT_SHA=${{ github.sha }}
STAGING=true
NODE_CONFIG_ENV=hy
- name: Push to quay.io
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
registry: quay.io/toska
username: toska+github
password: ${{ secrets.QUAY_IO_TOKEN }}