feat(makefile): bump docker compose to v2 #44
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: Publish and deploy staging image | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- '!**' | |
env: | |
IMAGE_NAME: 'web/smartweb/mutual' | |
REGISTRY_URL: ${{ secrets.HARBOR_URL }} | |
jobs: | |
build-push: | |
runs-on: | |
group: self-hosted | |
if: contains(github.event.head_commit.message, 'Back to development:') == false && contains(github.event.head_commit.message, 'Preparing release') == false | |
steps: | |
- name: Build tags | |
run: | | |
{ | |
echo 'IMAGE_TAGS<<EOF' | |
echo '${{ env.REGISTRY_URL }}/${{ env.IMAGE_NAME }}:staging' | |
echo '${{ env.REGISTRY_URL }}/${{ env.IMAGE_NAME }}:staging-${{ github.run_number }}' | |
echo EOF | |
} >> $GITHUB_ENV | |
- name: Build push and notify | |
uses: IMIO/gha/[email protected] | |
with: | |
IMAGE_NAME: ${{ env.IMAGE_NAME }} | |
IMAGE_TAGS: ${{ env.IMAGE_TAGS }} | |
REGISTRY_URL: ${{ env.REGISTRY_URL}} | |
REGISTRY_USERNAME: ${{ secrets.SMARTWEB_HARBOR_USERNAME }} | |
REGISTRY_PASSWORD: ${{ secrets.SMARTWEB_HARBOR_PASSWORD }} | |
MATTERMOST_WEBHOOK_URL: ${{ secrets.SMARTWEB_MATTERMOST_WEBHOOK_URL }} | |
deploy: | |
runs-on: | |
group: self-hosted | |
needs: build-push | |
steps: | |
- name: Deploy to staging and notify | |
uses: IMIO/gha/[email protected] | |
with: | |
RUNDECK_URL: ${{ secrets.RUNDECK_URL }} | |
RUNDECK_TOKEN: ${{ secrets.SMARTWEB_RUNDECK_TOKEN }} | |
RUNDECK_JOB_ID: ${{ secrets.RUNDECK_DEPLOY_STAGING_JOB_ID }} | |
RUNDECK_PARAMETERS: '-X POST' | |
MATTERMOST_WEBHOOK_URL: ${{ secrets.SMARTWEB_MATTERMOST_WEBHOOK_URL }} |