Skip to content

Change image repository #5

Change image repository

Change image repository #5

Workflow file for this run

name: Deploy
on:
push:
branches:
- prod
jobs:
Deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Publish
working-directory: backend/ResQueue
run: dotnet publish --os linux --arch amd64 /t:PublishContainer -p ContainerRepository "ghcr.io/filipbekic01/resqueue/resqueue"