Update dev-robgruen-docker.yml #18
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
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy | |
# More GitHub Actions for Azure: https://github.com/Azure/actions | |
name: Build and deploy Node.js app to Azure Web App - typeagent | |
on: | |
push: | |
branches: | |
- dev/robgruen/android_sans_MSAL | |
workflow_dispatch: | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
# build_ts: | |
# env: | |
# NODE_OPTIONS: "--max_old_space_size=8192" | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# os: ["windows-latest"] | |
# #os: ["ubuntu-latest", "windows-latest", "macos-latest"] | |
# #version: [18, 20] | |
# version: [20] | |
# runs-on: ${{ matrix.os }} | |
# steps: | |
# - name: Setup Git LF | |
# run: | | |
# git config --global core.autocrlf false | |
# - uses: actions/checkout@v4 | |
# - uses: dorny/paths-filter@v3 | |
# id: filter | |
# with: | |
# filters: | | |
# ts: | |
# - "ts/**" | |
# - ".github/workflows/build-ts.yml" | |
# - uses: pnpm/action-setup@v4 | |
# if: ${{ github.event_name != 'pull_request' || steps.filter.outputs.ts == 'true' }} | |
# name: Install pnpm | |
# with: | |
# version: 9 | |
# run_install: false | |
# - uses: actions/setup-node@v4 | |
# if: ${{ github.event_name != 'pull_request' || steps.filter.outputs.ts == 'true' }} | |
# with: | |
# node-version: ${{ matrix.version }} | |
# cache: "pnpm" | |
# cache-dependency-path: ts/pnpm-lock.yaml | |
# - name: Install dependencies | |
# if: ${{ github.event_name != 'pull_request' || steps.filter.outputs.ts == 'true' }} | |
# working-directory: ts | |
# run: | | |
# pnpm install --frozen-lockfile --strict-peer-dependencies | |
# - name: Build | |
# if: ${{ github.event_name != 'pull_request' || steps.filter.outputs.ts == 'true' }} | |
# working-directory: ts | |
# run: | | |
# npm run build | |
# - name: Test | |
# if: ${{ github.event_name != 'pull_request' || steps.filter.outputs.ts == 'true' }} | |
# working-directory: ts | |
# run: | | |
# npm run test | |
# - name: Lint | |
# if: ${{ github.event_name != 'pull_request' || steps.filter.outputs.ts == 'true' }} | |
# working-directory: ts | |
# run: | | |
# npm run lint | |
deploy: | |
runs-on: ubuntu-latest # pnpm deploy does not work currently on Windows. Fails with EPERM. | |
# needs: build_ts | |
# environment: | |
# name: 'test' | |
# url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} | |
# permissions: | |
# id-token: write #This is required for requesting the JWT | |
steps: | |
- name: Setup Git LF | |
run: | | |
git config --global core.autocrlf false | |
- uses: actions/checkout@v4 | |
- uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
ts: | |
- "ts/**" | |
- ".github/workflows/build-ts.yml" | |
- uses: pnpm/action-setup@v4 | |
if: ${{ github.event_name != 'pull_request' || steps.filter.outputs.ts == 'true' }} | |
name: Install pnpm | |
with: | |
version: 9 | |
run_install: false | |
- uses: actions/setup-node@v4 | |
if: ${{ github.event_name != 'pull_request' || steps.filter.outputs.ts == 'true' }} | |
with: | |
node-version: ${{ matrix.version }} | |
cache: "pnpm" | |
cache-dependency-path: ts/pnpm-lock.yaml | |
# - name: Install dependencies | |
# if: ${{ github.event_name != 'pull_request' || steps.filter.outputs.ts == 'true' }} | |
# working-directory: ts | |
# run: | | |
# pnpm install --frozen-lockfile --strict-peer-dependencies | |
# - name: Set up QEMU | |
# # Add support for more platforms with QEMU (optional) | |
# # https://github.com/docker/setup-qemu-action | |
# uses: docker/setup-qemu-action@v3 | |
- name: Login to Azure | |
uses: azure/[email protected] | |
with: | |
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_5B0D2D6BA40F4710B45721D2112356DD }} | |
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_39BB903136F14B6EAD8F53A8AB78E3AA }} | |
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_F36C1F2C4B2C49CA8DD5C52FAB98FA30 }} | |
# - name: Login to Container Registry | |
# uses: Azure/docker-login@v1 | |
# with: | |
# # # Container registry username | |
# username: ${{ secrets.AZUREAPPSERVICE_CLIENTID_5B0D2D6BA40F4710B45721D2112356DD }} | |
# # # Container registry password | |
# # password: # default is | |
# # # Container registry server url | |
# login-server: typeagentcontainerregistry.azurecr.io | |
# - name: Login to Container Registry | |
# uses: docker/login-action@v3 | |
# with: | |
# registry: typeagentcontainerregistry.azurecr.io | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
# - name: Build Docker image(s) | |
# # You may pin to the exact commit or the version. | |
# # uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 | |
# uses: docker/[email protected] | |
# with: | |
# context: . | |
# file: ts/Dockerfile | |
# push: true | |
# tags: typeagent:latest | |
- run: az account set --subscription b64471de-f2ac-4075-a3cb-7656bca768d0 | |
- run: az acr build -t typeAgent:latest -r typeagentContainerRegistry --file ts/DockerFile --subscription b64471de-f2ac-4075-a3cb-7656bca768d0 ./ts | |
# - name: Docker login | |
# uses: docker/[email protected] | |
# with: | |
# registry: typeagentcontainerregistry.azurecr.io | |
# steps: | |
# - name: Download artifact from build job | |
# uses: actions/[email protected] | |
# with: | |
# name: node-app | |
# - name: Login to Azure | |
# uses: azure/[email protected] | |
# with: | |
# client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_5B0D2D6BA40F4710B45721D2112356DD }} | |
# tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_39BB903136F14B6EAD8F53A8AB78E3AA }} | |
# subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_F36C1F2C4B2C49CA8DD5C52FAB98FA30 }} | |
# - name: 'Deploy to Azure Web App' | |
# uses: azure/[email protected] | |
# id: deploy-to-webapp | |
# with: | |
# app-name: 'typeagent' | |
# slot-name: 'test' | |
# package: . | |