diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..f51afbc --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,56 @@ +# This is a basic workflow to help you get started with Actions + +name: CI to DockerHUb + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the master branch + push: + branches: [deploy] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + - name: Check Out Repo + uses: actions/checkout@v2 + + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v1 + + - name: Build and push + id: docker_build + uses: docker/build-push-action@v2 + with: + context: ./ + file: ./Dockerfile + push: true + tags: ${{ secrets.DOCKER_HUB_USERNAME }}/berlevog-mario:latest + + - name: Image digest + run: echo ${{ steps.docker_build.outputs.digest }} + + deploy: + name: Redeploy - Webhook call + runs-on: ubuntu-latest + needs: [build] + steps: + - name: Deploy docker container webhook + uses: joelwmale/webhook-action@master + env: + WEBHOOK_URL: ${{ secrets.DEPLOY_WEBHOOK_URL }}