-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' of github.com:DANS-KNAW/dans-frontend-fram…
…ework into development
- Loading branch information
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Docker Image CI | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'apps/supercatalog/**' | ||
|
||
jobs: | ||
|
||
test: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: ["20"] | ||
name: Run tests | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
- name: Set node version | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20' | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install git | ||
npm i -g turbo | ||
npm i -g pnpm | ||
- name: Run tests | ||
run: "echo 'setup complete' " | ||
|
||
push: | ||
|
||
name: Push to registry. | ||
runs-on: ohsmart-demo | ||
needs: test | ||
strategy: | ||
matrix: | ||
node-version: ["20"] | ||
env: | ||
IMAGE_TAG: ${{ github.ref_name }} | ||
USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
IMAGE_NAME: "dans-frontend-framework-supercatalog" | ||
ORG: "dansknaw" | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
- name: Login to registry | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
- name: Copy file | ||
run: "cp /data/secrets/supercatalog/.env.production apps/supercatalog/." | ||
- name: Push to dockerhub | ||
run: | | ||
docker build -f apps/ohsmart/Dockerfile . -t $ORG/$IMAGE_NAME:$IMAGE_TAG | ||
docker push $ORG/$IMAGE_NAME:$IMAGE_TAG |