Skip to content

Commit

Permalink
Update eoefans-spider-azure-deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kazami139 authored and GitHub Enterprise committed Feb 25, 2023
1 parent 3cad3cb commit 6cd959b
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/eoefans-spider-azure-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
name: Deploy EOEFANS SPIDER to Azure

on:
push:
branches: [ "release" ]
# push:
# branches: [ "release" ]
# pull_request:
# types: [synchronize, closed]
# branches: [ "release" ]

workflow_dispatch:
inputs:
deploy_version:
required: true
type: string
env:
AZURE_WEBAPP_NAME: "eoefans-spider" # set this to your application's name
IMAGE_REGISTRY: "containers.vlink.dev"
IMAGE_REPO: "eoefans"
IMAGE_NAME: "eoefans-spider"

DEPLOY_VERSION: ${{ inputs.deploy_version }}

jobs:

Expand Down Expand Up @@ -41,4 +45,4 @@ jobs:
with:
app-name: ${{ env.AZURE_WEBAPP_NAME }}
publish-profile: ${{ secrets.AZURE_CREDENTIALS_EOEFANS_SPIDER }}
images: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_REPO }}/${{ env.IMAGE_NAME }}:latest
images: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_REPO }}/${{ env.IMAGE_NAME }}:${{ env.DEPLOY_VERSION }}

0 comments on commit 6cd959b

Please sign in to comment.