Bumped craft-next-js-builds
plugin version
#142
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: 'Deploy to Dev' | |
on: | |
push: | |
branches: | |
- 'develop' | |
jobs: | |
build-push-deploy: | |
name: 'Build and Deploy to Development' | |
runs-on: ubuntu-latest | |
if: ${{ github.event.action != 'closed'}} | |
# Checkout the repository to the GitHub Actions runner | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
# gcloud CLI setup | |
- name: Login to GCP | |
uses: google-github-actions/setup-gcloud@v0 | |
with: | |
service_account_key: ${{ secrets.DEV_SA_KEY }} | |
project_id: ${{ secrets.SV_PROJ_NAME }} | |
export_default_credentials: true | |
- name: Get .env | |
run: gcloud secrets versions access latest --secret=investigations-api-env > .env | |
- name: Build Container Image | |
run: docker build -t "gcr.io/${{ secrets.SV_PROJ_NAME }}/investigations-api:${{ github.sha }}" . | |
- name: Configure Docker Auth | |
run: gcloud --quiet auth configure-docker | |
- name: Push Container Image to GCR | |
run: docker push gcr.io/${{ secrets.SV_PROJ_NAME }}/investigations-api:${{ github.sha }} | |
- name: Get app.yaml | |
run: gcloud secrets versions access latest --secret=investigations-api-appyaml > app.yaml | |
- name: Format version name | |
id: version_name | |
run: echo "version_name=$(echo \"${{ github.head_ref }}\" | sed 's/[_.,\/]/-/g' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV | |
- name: Deploy to App Engine | |
env: | |
BRANCH_NAME: ${{ env.version_name }} | |
run: | | |
gcloud app deploy app.yaml \ | |
--quiet \ | |
--image-url=gcr.io/${{ secrets.SV_PROJ_NAME }}/investigations-api:${{ github.sha }} \ | |
--promote \ | |
--project=${{ secrets.SV_PROJ_NAME }} | |