Skip to content

Update dependency vite to v6 (#446) #292

Update dependency vite to v6 (#446)

Update dependency vite to v6 (#446) #292

name: Build, push to ghcr and deploy to AT
on:
push:
branches: [main]
workflow_dispatch:
env:
DOTNET_VERSION: '8.0.x'
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION}}
- name: Login to Github Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push to ghcr
uses: docker/build-push-action@v6
with:
push: true
tags: ghcr.io/altinn/altinn-authentication-frontend:${{ github.sha }}
build-args: |
SOURCE-REVISION_ID=${{ github.sha }}
deploy:
name: Deploy to ${{ matrix.environment }}
runs-on: ubuntu-latest
environment: ${{ matrix.environment }}
needs:
- build
permissions:
id-token: write
contents: read
packages: read
strategy:
matrix:
environment: [AT22, AT23, AT24]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Azure Login
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- name: Deploy
uses: ./.github/actions/deploy
with:
image-tag: ${{ github.sha }}
resource-group: ${{ vars.CONTAINER_APP_RESOURCE_GROUP_NAME }}
container-app: ${{ vars.CONTAINER_APP_NAME }}
playwright:
name: "Playwright"
needs: deploy
strategy:
fail-fast: false
matrix:
environment: [AT22, AT23, AT24]
uses: "./.github/workflows/template-test-playwright.yml"

Check failure on line 84 in .github/workflows/build-deploy-at.yml

View workflow run for this annotation

GitHub Actions / Build, push to ghcr and deploy to AT

Invalid workflow file

The workflow is not valid. .github/workflows/build-deploy-at.yml (Line: 84, Col: 11): Secret USERNAME_TEST_API is required, but not provided while calling. .github/workflows/build-deploy-at.yml (Line: 84, Col: 11): Secret PASSWORD_TEST_API is required, but not provided while calling.
with:
environment: ${{ matrix.environment }}