Skip to content

Github action for continuous deployment to GAM #1

Github action for continuous deployment to GAM

Github action for continuous deployment to GAM #1

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:
pull_request:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Setup Node
uses: actions/setup-node@v3
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Install Dependencies
run: pipenv install
with:

Check failure on line 42 in .github/workflows/gam.yml

View workflow run for this annotation

GitHub Actions / Deploy Templates to GAM

Invalid workflow file

The workflow is not valid. .github/workflows/gam.yml (Line: 42, Col: 9): Unexpected value 'with' .github/workflows/gam.yml (Line: 47, Col: 9): Unexpected value 'with'
working-directory: ./scripts/deploy
- name: Deploy Templates to GAM
run: pipenv run python deploy.py
with:
working-directory: ./scripts/deploy