mirror of
https://github.com/google/blockly.git
synced 2026-01-06 16:40:07 +01:00
Bumps [google-github-actions/deploy-appengine](https://github.com/google-github-actions/deploy-appengine) from 2.0.0 to 2.1.0. - [Release notes](https://github.com/google-github-actions/deploy-appengine/releases) - [Changelog](https://github.com/google-github-actions/deploy-appengine/blob/main/CHANGELOG.md) - [Commits](https://github.com/google-github-actions/deploy-appengine/compare/v2.0.0...v2.1.0) --- updated-dependencies: - dependency-name: google-github-actions/deploy-appengine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
55 lines
1.5 KiB
YAML
55 lines
1.5 KiB
YAML
# Workflow that prepares files and deploys to appengine
|
|
|
|
name: Deploy to App Engine
|
|
|
|
# Controls when the workflow will run
|
|
on:
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
prepare:
|
|
name: Prepare
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
# Checks-out the repository under $GITHUB_WORKSPACE.
|
|
# When running manually this checks out the master branch.
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Prepare demo files
|
|
# Install all dependencies, then copy all the files needed for demos.
|
|
run: |
|
|
npm install
|
|
npm run prepareDemos
|
|
|
|
- name: Upload
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: appengine_files
|
|
path: _deploy/
|
|
|
|
deploy:
|
|
name: Deploy
|
|
runs-on: ubuntu-latest
|
|
# The prepare step must succeed for this step to run.
|
|
needs: prepare
|
|
steps:
|
|
- name: Download prepared files
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: appengine_files
|
|
path: _deploy/
|
|
|
|
- name: Deploy to App Engine
|
|
uses: google-github-actions/deploy-appengine@v2.1.0
|
|
# For parameters see:
|
|
# https://github.com/google-github-actions/deploy-appengine#inputs
|
|
with:
|
|
working_directory: _deploy/
|
|
deliverables: app.yaml
|
|
project_id: ${{ secrets.GCP_PROJECT }}
|
|
credentials: ${{ secrets.GCP_SA_KEY }}
|
|
promote: false
|
|
version: vtest
|