Skip to content

Commit

Permalink
Reenable auto-deploy to stage
Browse files Browse the repository at this point in the history
  • Loading branch information
pablin-10 committed Apr 19, 2024
1 parent 5f28cda commit 8fe9495
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/push-dev-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,27 +23,27 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
-
-
name: Check out repo
uses: actions/checkout@v4
with:
fetch-depth: 0
-
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
-
name: Create Docker Image Tags
run: |
SHORT_SHA=$(echo ${GITHUB_SHA} | cut -c1-8)
echo "DOCKER_IMAGE_TAG=${{ github.ref_name }}-${SHORT_SHA}" >> $GITHUB_ENV
echo "DOCKER_IMAGE_TAG_WITH_DATE=${{ github.ref_name }}-${SHORT_SHA}-$(date +%s)" >> $GITHUB_ENV
-
-
name: Build and Push Docker Images
uses: docker/build-push-action@v5
with:
Expand All @@ -54,10 +54,13 @@ jobs:
tags: |
${{ env.DOCKER_REPOSITORY }}:${{ env.DOCKER_IMAGE_TAG }}
${{ env.DOCKER_REPOSITORY }}:${{ env.DOCKER_IMAGE_TAG_WITH_DATE }}
- name: Get default branch name
run: echo "The default branch is ${{ github.event.repository.default_branch }} and the actual branch is ${{ github.ref }}"
-
if: github.ref == 'refs/heads/{{ github.event.repository.default_branch }}'
if: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
name: Send Webhook to deploy automatically to stage
run: |
echo '{"sqsdockerversion":"${{ env.DOCKER_REPOSITORY }}:${{ env.DOCKER_IMAGE_TAG }}"}' > temp.json
jq -s '.[0] * .[1]' config.json temp.json > combined_config.json
curl -H "Content-Type: application/json" -X POST -d @combined_config.json ${{ secrets.DEPLOY_URL }}

0 comments on commit 8fe9495

Please sign in to comment.