Skip to content

Deploy Templates to GAM #55

Deploy Templates to GAM

Deploy Templates to GAM #55

Workflow file for this run

name: Deploy Templates to GAM
permissions:
contents: read
concurrency:
group: 'deploy'
cancel-in-progress: true
on:
push:
branches:
- main
workflow_dispatch:
jobs:
# lint:
# name: Linting
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3
# - run: corepack enable
# shell: bash
# - name: Setup Node
# uses: actions/setup-node@v4
# with:
# node-version-file: '.nvmrc'
# cache: 'pnpm'
# - name: Install dependencies
# run: pnpm install --frozen-lockfile
# shell: bash
# - name: Lint files
# run: pnpm lint
# types:
# name: Typescript
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3
# - run: corepack enable
# shell: bash
# - name: Setup Node
# uses: actions/setup-node@v4
# with:
# node-version-file: '.nvmrc'
# cache: 'pnpm'
# - name: Install dependencies
# run: pnpm install --frozen-lockfile
# shell: bash
# - name: Check typescript
# run: pnpm tsc
# deploy:
# name: Deploy
# runs-on: ubuntu-latest
# needs: [lint, types]
# steps:
# - uses: actions/checkout@v2
# - name: Setup Python
# uses: actions/setup-python@v2
# with:
# python-version: '3.11'
# - name: Install pipenv
# run: pip install pipenv
# - run: corepack enable
# shell: bash
# - name: Setup Node
# uses: actions/setup-node@v4
# with:
# node-version-file: '.nvmrc'
# cache: 'pnpm'
# - name: Install dependencies
# run: pnpm install --frozen-lockfile
# shell: bash
# - name: Build
# run: pnpm build
# - name: Install Dependencies
# run: pipenv install
# working-directory: ./scripts/deploy
# - name: Deploy Templates to GAM
# run: pipenv run python deploy.py
# working-directory: ./scripts/deploy
# env:
# GAM_APPLICATION_NAME: ${{ secrets.GAM_APPLICATION_NAME }}
# GAM_NETWORK_CODE: ${{ secrets.GAM_NETWORK_CODE }}
# SERVICE_ACCOUNT_KEY_FILE: ${{ secrets.SERVICE_ACCOUNT_KEY_FILE }}
deploy-legacy:
name: Deploy Legacy
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./legacy
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install pipenv
run: pip install pipenv
- run: corepack enable
shell: bash
working-directory: ./legacy
- name: Setup Node (Legacy)
uses: actions/setup-node@v4
with:
node-version-file: './legacy/.nvmrc'
cache: 'npm'
cache-dependency-path: './legacy/package-lock.json'
- name: Install dependencies
run: npm install --frozen-lockfile
working-directory: ./legacy
shell: bash
- name: Build
run: npm run build
working-directory: ./legacy
- name: Install Dependencies
run: pipenv install
working-directory: ./scripts/deploy
- name: Deploy Templates to GAM
run: pipenv run python deploy.py --legacy
working-directory: ./scripts/deploy
env:
GAM_APPLICATION_NAME: ${{ secrets.GAM_APPLICATION_NAME }}
GAM_NETWORK_CODE: ${{ secrets.GAM_NETWORK_CODE }}
SERVICE_ACCOUNT_KEY_FILE: ${{ secrets.SERVICE_ACCOUNT_KEY_FILE }}