feat: update deps #155
Workflow file for this run
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: Issuer deploy/build action | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [develop] | |
types: [opened, synchronize, reopened] | |
paths: | |
- 'apps/oidc/issuer/**' | |
- 'Dockerfile' | |
- .github/workflows/deploy_issuer.yml | |
push: | |
branches: [develop] | |
paths: | |
- 'packages/oidc/issuer/**' | |
- 'Dockerfile' | |
- .github/workflows/deploy_issuer.yml | |
jobs: | |
deploy: | |
# Deploy when we PUSH to DEVELOP | |
if: ${{ (github.ref == 'refs/heads/develop') && (github.event_name == 'push') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Create nx-cloud.env | |
run: echo "NX_CLOUD_ACCESS_TOKEN=$NX_CLOUD_ACCESS_TOKEN" > nx-cloud.env | |
env: | |
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
- name: Build blockchain-lab-um/masca | |
run: docker build . -t blockchain-lab-um/masca | |
- name: Build blockchain-lab-um/issuer | |
run: docker build ./apps/oidc/issuer -t blockchain-lab-um/issuer | |
- name: Change image tag | |
run: docker tag blockchain-lab-um/issuer:latest bclabum.informatika.uni-mb.si/registry/issuer:latest | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
registry: bclabum.informatika.uni-mb.si/registry | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Push to private docker registry | |
run: docker push bclabum.informatika.uni-mb.si/registry/issuer:latest | |
test-build: | |
# Test build on every PR to DEVELOP | |
if: ${{ github.event_name == 'pull_request' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Create nx-cloud.env | |
run: echo "NX_CLOUD_ACCESS_TOKEN=$NX_CLOUD_ACCESS_TOKEN" > nx-cloud.env | |
env: | |
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
- name: Build blockchain-lab-um/masca | |
run: docker build . -t blockchain-lab-um/masca | |
- name: Build blockchain-lab-um/issuer | |
run: docker build ./apps/oidc/issuer -t blockchain-lab-um/issuer |