Bump @babel/traverse from 7.17.9 to 7.23.2 #17
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 staging | |
on: | |
pull_request: | |
types: [labeled] | |
env: | |
IMAGE_REGISTRY_URL: ghcr.io | |
############################################### | |
### Replace <username> with GitHub username ### | |
############################################### | |
DOCKER_IMAGE_NAME: custodeexcessus-azure-ttt | |
AZURE_WEBAPP_NAME: custodeexcessus-ttt-app | |
############################################### | |
jobs: | |
build: | |
if: contains(github.event.pull_request.labels.*.name, 'stage') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: npm install and build webpack | |
run: | | |
npm install | |
npm run build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: webpack artifacts | |
path: public/ | |
Build-Docker-Image: | |
runs-on: ubuntu-latest | |
needs: build | |
name: Build image and store in GitHub Container Registry | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Download built artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: webpack artifacts | |
path: public | |
- name: Log in to GHCR | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.IMAGE_REGISTRY_URL }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: ${{env.IMAGE_REGISTRY_URL}}/${{ github.repository }}/${{env.DOCKER_IMAGE_NAME}} | |
tags: | | |
type=sha,format=long,prefix= | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
Deploy-to-Azure: | |
runs-on: ubuntu-latest | |
needs: Build-Docker-Image | |
name: Deploy app container to Azure | |
steps: | |
- name: "Login via Azure CLI" | |
uses: azure/login@v1 | |
with: | |
creds: ${{ secrets.AZURE_CREDENTIALS }} | |
- uses: azure/docker-login@v1 | |
with: | |
login-server: ${{env.IMAGE_REGISTRY_URL}} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Deploy web app container | |
uses: azure/webapps-deploy@v2 | |
with: | |
app-name: ${{env.AZURE_WEBAPP_NAME}} | |
images: ${{env.IMAGE_REGISTRY_URL}}/${{ github.repository }}/${{env.DOCKER_IMAGE_NAME}}:${{ github.sha }} | |
- name: Azure logout via Azure CLI | |
uses: azure/CLI@v1 | |
with: | |
inlineScript: | | |
az logout | |
az cache purge | |
az account clear |