Skip to content

Commit

Permalink
chore: also update for spider
Browse files Browse the repository at this point in the history
  • Loading branch information
kazami139 committed Mar 6, 2023
1 parent fce5dcb commit 25ad00c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/eoefans-spider-azure-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,18 @@ on:
deploy_version:
required: true
type: string
sentry_release:
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 }}
DEPLOY_VERSION: ${{ inputs.deploy_version }}

SENTRY_RELEASE: ${{ inputs.sentry_release }}
SENTRY_ORG: "eoefans"
SENTRY_PROJECT: "eoefans-spider"

Expand Down Expand Up @@ -54,6 +60,7 @@ jobs:
images: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_REPO }}/${{ env.IMAGE_NAME }}:${{ env.DEPLOY_VERSION }}

- name: Create Sentry release
if: ${{ (env.SENTRY_RELEASE == 'true') || (env.SENTRY_RELEASE == 'True') || (env.SENTRY_RELEASE == '1') }}
uses: getsentry/action-release@v1
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
Expand Down

0 comments on commit 25ad00c

Please sign in to comment.