Microsite Prod Deploy #46
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: Microsite Prod Deploy | |
on: | |
workflow_dispatch: | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install pack | |
uses: jvalkeal/[email protected] | |
with: | |
pack-version: 0.24.1 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.2.0 | |
- uses: azure/login@v1 | |
with: | |
creds: ${{ secrets.AZURE_PROD_CREDENTIALS }} | |
- uses: azure/docker-login@v1 | |
with: | |
login-server: ${{ secrets.AZURE_PROD_REGISTRY_URL }} | |
username: ${{ secrets.AZURE_PROD_REGISTRY_USERNAME }} | |
password: ${{ secrets.AZURE_PROD_REGISTRY_PASSWORD }} | |
- name: Yarn build | |
env: | |
NODE_OPTIONS: '--openssl-legacy-provider' | |
ALGOLIA_ADMIN_KEY_PASSWORD: ${{ secrets.ALGOLIA_ZFB6X2VA6A_ADMIN_KEY }} | |
GOOGLE_TAGMANAGER_ID: ${{ secrets.GOOGLE_TAGMANAGER_ID_SCDF }} | |
run: | | |
yarn install | |
yarn run fix | |
yarn build | |
- name: Prepare Paketo | |
run: | | |
cp -R public paketo/ | |
- name: Setup Tag | |
run: | | |
echo TAG=$(date +%y%m%d%H%M%S)-${{ github.sha }} >> $GITHUB_ENV | |
- name: Build Image | |
working-directory: ./paketo | |
run: | | |
pack build ${{ secrets.AZURE_PROD_REGISTRY_URL }}/scdf-microsite:$TAG \ | |
--buildpack gcr.io/paketo-buildpacks/nginx \ | |
--builder gcr.io/paketo-buildpacks/builder:base | |
docker push ${{ secrets.AZURE_PROD_REGISTRY_URL }}/scdf-microsite:$TAG | |
# - name: Deploy | |
# uses: azure/webapps-deploy@v2 | |
# with: | |
# app-name: scdfmicrosite | |
# images: ${{ secrets.AZURE_PROD_REGISTRY_URL }}/scdf-microsite:${{ env.TAG }} | |
# slot-name: green | |
# - name: Swap green/production | |
# uses: azure/CLI@v1 | |
# with: | |
# inlineScript: | | |
# az webapp deployment slot swap --resource-group scdfmicrosite --name scdfmicrosite --slot green |