Skip to content

Commit

Permalink
fixed hosting
Browse files Browse the repository at this point in the history
  • Loading branch information
andrrsin committed Feb 26, 2024
1 parent b1186fd commit f98a1de
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
types: [opened, synchronize, reopened]
jobs:
unit-tests:
runs-on: arm64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand Down
14 changes: 7 additions & 7 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: arm64
runs-on: ubuntu-latest
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: arm64
runs-on: ubuntu-latest
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: arm64
runs-on: ubuntu-latest
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: arm64
runs-on: ubuntu-latest
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: arm64
runs-on: ubuntu-latest
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: arm64
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
Expand All @@ -112,7 +112,7 @@ jobs:
workdir: gatewayservice
deploy:
name: Deploy over SSH
runs-on: arm64
runs-on: self-hosted
needs: [docker-push-userservice,docker-push-authservice,docker-push-gatewayservice,docker-push-webapp]
steps:
- name: Deploy over SSH
Expand Down

0 comments on commit f98a1de

Please sign in to comment.