updated usersubmssion component props for all apps #57
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
name: Docker Image CI | |
on: | |
push: | |
paths: | |
- 'apps/4tu/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ["18"] | |
name: Run tests | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Set node version | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- 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: ["18"] | |
env: | |
IMAGE_TAG: ${{ github.ref_name }} | |
USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
IMAGE_NAME: "dans-frontend-framework-4tu" | |
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/4tu/.env.production apps/4tu/." | |
- name: Push to dockerhub | |
run: | | |
docker build -f apps/4tu/Dockerfile . -t $ORG/$IMAGE_NAME:$IMAGE_TAG | |
docker push $ORG/$IMAGE_NAME:$IMAGE_TAG |