Skip to content

Commit

Permalink
ci: use common runners
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoine Mineau committed Mar 29, 2023
1 parent ff2e82c commit eca1583
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ env:

jobs:
publish:
runs-on: self-hosted
runs-on: [self-hosted, common]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -23,7 +23,7 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run semantic-release
build-and-push:
runs-on: self-hosted
runs-on: [self-hosted, common]
if: contains('
refs/heads/develop
refs/heads/master
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
docker-registry.bimdata.io/bimdata/${{ env.app }}:${{ env.tag }}
deploy:
runs-on: self-hosted
runs-on: [self-hosted, common]
needs: build-and-push
steps:
- name: Login to BIMData Docker Registry
Expand Down

0 comments on commit eca1583

Please sign in to comment.