Specify ISO format for consistent browser parsing (#2972) #157
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: cd-dev | |
concurrency: | |
group: dev | |
cancel-in-progress: true | |
on: | |
# Uncomment to work on CD in development mode. | |
# pull_request: | |
# branches: [ master ] | |
push: | |
branches: | |
- dev | |
jobs: | |
deploy_dev: | |
runs-on: ubuntu-latest | |
env: | |
ENV: "dev" | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Auth with Gcloud | |
uses: google-github-actions/auth@v2 | |
with: | |
credentials_json: ${{ secrets.GCP_DEV_SA_KEY }} | |
- name: Set up Gcloud SDK | |
uses: google-github-actions/setup-gcloud@v2 | |
with: | |
project_id: zesty-dev | |
- name: Set up Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "16.5.0" | |
cache: "npm" | |
cache-dependency-path: package-lock.json | |
- name: Install Dependencies | |
run: npm install | |
- name: Build | |
run: npm run build:dev | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
- name: Deploy to Dev | |
run: gcloud app deploy app.yaml --quiet --project zesty-dev | |
failed_deploy_notification_to_slack: | |
runs-on: ubuntu-latest | |
if: ${{ failure() }} | |
needs: [deploy_dev] | |
steps: | |
- name: Failed Deploy Notification To Slack | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_CHANNEL: code-deploy | |
SLACK_COLOR: "#FF2A08" | |
SLACK_ICON: https://brand.zesty.io/zesty-io-logo.svg | |
SLACK_MESSAGE: "PR merge by ${{ github.actor }} failed to deploy." | |
SLACK_TITLE: "FAILED: Dev Deployment for manager-ui" | |
SLACK_USERNAME: Deploy Bot | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
success_deploy_notification_to_slack: | |
runs-on: ubuntu-latest | |
if: ${{ success() }} | |
needs: [deploy_dev] | |
steps: | |
- name: Success Deploy Notification To Slack | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_CHANNEL: code-deploy | |
SLACK_COLOR: "#75BF43" | |
SLACK_ICON: https://brand.zesty.io/zesty-io-logo.svg | |
# SLACK_MESSAGE: "PR merge by ${{ github.actor }} has been deployed to stage." | |
SLACK_TITLE: "DEV:manager-ui" | |
SLACK_USERNAME: Deploy Bot | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
# create_release: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout Repo | |
# uses: actions/checkout@v4 | |
# - name: create local branch | |
# run: git switch --create stage | |
# - name: push local branch to origin | |
# run: git push -u origin stage | |
# - name: make pr | |
# run: gh pr create -B stage -H dev --title 'Stage Release' --body 'Created by Github action' | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# release-please: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout Repo | |
# uses: actions/checkout@v2 | |
# - uses: google-github-actions/release-please-action@v4 | |
# with: | |
# # this assumes that you have created a personal access token | |
# # (PAT) and configured it as a GitHub action secret named | |
# # `MY_RELEASE_PLEASE_TOKEN` (this secret name is not important). | |
# token: ${{ secrets.GITHUB_TOKEN }} | |
# # this is a built-in strategy in release-please, see "Action Inputs" | |
# # for more options | |
# release-type: node | |
# target-branch: stage | |
create_stage_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Check if PR exists | |
id: check | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
prs=$(gh pr list \ | |
--repo "$GITHUB_REPOSITORY" \ | |
--head 'dev' \ | |
--base 'stage' \ | |
--json title \ | |
--jq 'length') | |
if ((prs > 0)); then | |
echo "skip=true" >> "$GITHUB_OUTPUT" | |
fi | |
- name: Create Stage Release | |
if: "!steps.check.outputs.skip" | |
run: gh pr create -B stage -H dev --title 'Stage Release' --body 'Created by Github action' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |