CUSTOM_CA_PATH option for HTTPS PROXY - feature/https-proxy (#162) #71
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: Build, push Docker image and deploy to Azure | |
on: | |
push: | |
branches: | |
- main | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
permissions: | |
packages: write | |
jobs: | |
push_to_ghcr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout GitHub Action | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
# Adding below tag any push to main as "latest" | |
# To deploy latest, create a release with a semver tag | |
# type=raw,value=latest,enable={{is_default_branch}} | |
- name: Extract metadata | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
# this is back a single image, `-with-proxy` is legacy and will be removed | |
images: | | |
ghcr.io/${{ github.repository }} | |
ghcr.io/${{ github.repository }}-with-proxy | |
labels: | | |
org.opencontainers.image.title=copilot-metrics-viewer | |
org.opencontainers.image.description=Metrics viewer for GitHub Copilot usage | |
org.opencontainers.image.source=${{ github.repository }} | |
tags: | | |
type=sha | |
type=ref,event=branch | |
type=ref,event=pr | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
push: true | |
deploy: | |
runs-on: ubuntu-latest | |
needs: push_to_ghcr | |
environment: | |
name: 'production' | |
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} | |
steps: | |
- name: Deploy to Azure Web App | |
id: deploy-to-webapp | |
uses: azure/webapps-deploy@v2 | |
with: | |
app-name: 'copilot-metrics-viewer' | |
slot-name: 'production' | |
publish-profile: ${{ secrets.AzureAppService_PublishProfile_e94dfd38811a421eafe5ce4eee13b68b }} | |
images: 'ghcr.io/github-copilot-resources/copilot-metrics-viewer:main' |