Update .github/workflows/CI.yml
All checks were successful
GHA Testing / gha-testing (push) Successful in 2s
Build and Push Docker Image / build-and-push (push) Successful in 10m25s
Build and Push Docker Image / testing (1.24.x, ubuntu-latest) (push) Successful in 1m15s

This commit is contained in:
Alex Savin
2025-04-29 14:10:54 -04:00
parent 20b90ebbcd
commit fc56a2ea9e

View File

@ -99,7 +99,7 @@ jobs:
push: true
tags: |
docker.savin.nyc/${{ github.event.repository.name }}:nightly
docker.savin.nyc/${{ github.event.repository.name }}:${{ steps.vars.outputs.COMMIT_SHA_SHORT }}
docker.savin.nyc/${{ github.event.repository.name }}:${{ steps.version_step.outputs.COMMIT_SHA_SHORT }}
# ${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }}
# latest
# build-args: |
@ -119,7 +119,7 @@ jobs:
-H 'Content-Type: application/json' \
-H 'Authorization: Basic ${{ echo -n "secrets.SECRET_USERNAME:secrets.SECRET_PASSWORD" | base64 }}' \
-H 'Authorization: token ${{ secrets.GHA_TOKEN }}' \
-d '{"ref":"${{ github.ref }}","inputs":{"Version":"${{ steps.vars.outputs.COMMIT_SHA_SHORT }}","Env":"${{ github.ref_name}}"}}'
-d '{"ref":"${{ github.ref }}","inputs":{"Version":"${{ steps.version_step.outputs.COMMIT_SHA_SHORT }}","Env":"${{ github.ref_name}}"}}'
shell: bash
# - name: Auto Deploy (Dev)
## if: ${{ contains(github.ref, 'develop') and env.AUTO_DEPLOY_DEV == 'true' }}