Skip to content

Commit

Permalink
Self host changes
Browse files Browse the repository at this point in the history
  • Loading branch information
andrrsin committed Feb 26, 2024
1 parent f98a1de commit 1a3be5e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
unit-tests:
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -27,7 +27,7 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
e2e-tests:
needs: [unit-tests]
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -41,7 +41,7 @@ jobs:
- run: npm --prefix webapp run test:e2e
docker-push-webapp:
name: Push webapp Docker Image to GitHub Packages
runs-on: ubuntu-latest
runs-on: self-hosted
permissions:
contents: read
packages: write
Expand All @@ -61,7 +61,7 @@ jobs:
buildargs: API_URI
docker-push-authservice:
name: Push auth service Docker Image to GitHub Packages
runs-on: ubuntu-latest
runs-on: self-hosted
permissions:
contents: read
packages: write
Expand All @@ -78,7 +78,7 @@ jobs:
workdir: users/authservice
docker-push-userservice:
name: Push user service Docker Image to GitHub Packages
runs-on: ubuntu-latest
runs-on: self-hosted
permissions:
contents: read
packages: write
Expand All @@ -95,7 +95,7 @@ jobs:
workdir: users/userservice
docker-push-gatewayservice:
name: Push gateway service Docker Image to GitHub Packages
runs-on: ubuntu-latest
runs-on: self-hosted
permissions:
contents: read
packages: write
Expand Down

0 comments on commit 1a3be5e

Please sign in to comment.