aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/main-branch.yml
blob: 9c933ef4554d0afe7247ed0131c118096330a797 (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
24
25
26
27
28
29
30
31
32
33
34
35
name: Create release and push production server image to dockerhub
on:
  push:
    branches:
      - main
jobs:
  Build-docker-and-push:
    name: Build the production docker container image and push it to dockerhub
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
        with:
          submodules: recursive
      - uses: docker/login-action@v3
        with:
          username: ${{ secrets.DOCKERHUB_USERNAME }}
          password: ${{ secrets.DOCKERHUB_TOKEN }}
      - uses: docker/build-push-action@v5
        with:
          push: true
          context: .
          file: ./docker/prod/Dockerfile
          tags: ${{ secrets.DOCKERHUB_USERNAME }}/pico-web-server:latest

  Release:
    name: Make github release
    runs-on: ubuntu-latest
    needs: Build-docker-and-push
    steps:
      - uses: actions/checkout@v4
      - uses: rymndhng/release-on-push-action@master
        env:
          GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}
        with:
          bump_version_scheme: norelease # PR must have one of these labels: release:major, release:minor, release:patch