From 683c138251c79d437413404ebdaf579129f96060 Mon Sep 17 00:00:00 2001 From: sigurdgroneng Date: Mon, 14 Aug 2023 15:17:23 +0200 Subject: [PATCH] Remove repository prefix from reusable-workflow files --- .github/workflows/deploy-feature-branch.yml | 4 ++-- .github/workflows/deploy.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy-feature-branch.yml b/.github/workflows/deploy-feature-branch.yml index 8bbf9a74c..6ea0339f1 100644 --- a/.github/workflows/deploy-feature-branch.yml +++ b/.github/workflows/deploy-feature-branch.yml @@ -10,7 +10,7 @@ concurrency: jobs: dev-ekstern: name: Deploy to dev extern - uses: navikt/aktivitetsplan/.github/workflows/deploy-ekstern.yml + uses: ./.github/workflows/deploy-ekstern.yml with: kommando: npm run build:dev-ekstern bucket: aktivitetsplan-dev @@ -20,7 +20,7 @@ jobs: dev-intern: name: Deploy application to dev intern - uses: navikt/aktivitetsplan/.github/workflows/deploy-intern.yml + uses: ./.github/workflows/deploy-intern.yml with: kommando: npm run build:dev-intern bucket: aktivitetsplan-dev-intern diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b3af17559..d10bee645 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,7 +12,7 @@ concurrency: jobs: dev-ekstern: name: Deploy to dev extern - uses: navikt/aktivitetsplan/.github/workflows/deploy-ekstern.yml + uses: ./.github/workflows/deploy-ekstern.yml with: kommando: npm run build:dev-ekstern bucket: aktivitetsplan-dev @@ -23,7 +23,7 @@ jobs: dev-intern: name: Deploy application to dev intern - uses: navikt/aktivitetsplan/.github/workflows/deploy-intern.yml + uses: ./.github/workflows/deploy-intern.yml with: kommando: npm run build:dev-intern bucket: aktivitetsplan-dev-intern @@ -33,7 +33,7 @@ jobs: prod-ekstern: name: Deploy application to prod ekstern needs: dev-ekstern - uses: navikt/aktivitetsplan/.github/workflows/deploy-ekstern.yml + uses: ./.github/workflows/deploy-ekstern.yml with: kommando: npm run build:prod-ekstern bucket: aktivitetsplan-prod @@ -45,7 +45,7 @@ jobs: prod-intern: name: Deploy application to prod intern needs: dev-intern - uses: navikt/aktivitetsplan/.github/workflows/deploy-intern.yml + uses: ./.github/workflows/deploy-intern.yml with: kommando: npm run build:prod-intern bucket: aktivitetsplan-prod-intern