aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/docker-publish-dh.yml
blob: 6d9534cb158fa6134959ae8d500ed281bf2f6522 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: Docker Publish DockerHub

on:
  push:
    branches: [ "stable" ]

jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      # No changes

      - name: Login to Docker Hub
        uses: docker/login-action@v3
        with:
          username: ${{ secrets.DOCKERHUB_USERNAME }}
          password: ${{ secrets.DOCKERHUB_TOKEN }}

      - name: Build and push
        uses: docker/build-push-action@v5
        with:
          push: true
          tags: alee14498/dlap:latest