aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/earthly.yml
blob: fe4504827d91267aafbf1fab8e24fe8b1a99bd74 (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: Docker

on:
  push:
    branches: [ "main" ]
    # Publish semver tags as releases.
    tags: [ 'v*.*.*' ]
  pull_request:
    branches: [ "main" ]

jobs:
  build:
    runs-on: alrest-xe-site
    permissions:
      contents: read
      packages: write
    steps:
      - name: Checkout repository
        uses: actions/checkout@v4

      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v3

      - name: Log into registry 
        if: github.event_name != 'pull_request'
        uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
        with:
          registry: ghcr.io
          username: xe
          password: ${{ secrets.GITHUB_TOKEN }}

      - name: Build and push
        if: github.event_name != 'pull_request'
        id: build
        uses: docker/bake-action@v6
        with:
          source: .
          push: true
          set: |
            patreon-saasproxy.tags=ghcr.io/xe/site/patreon-saasproxy:latest
            xesite.tags=ghcr.io/xe/site/bin:latest

      - name: Build Docker image
        if: github.event_name == 'pull_request'
        uses: docker/bake-action@v6
        with:
          source: .
          push: true
          set: |
            patreon-saasproxy.tags=ghcr.io/xe/site/patreon-saasproxy:latest
            xesite.tags=ghcr.io/xe/site/bin:latest

  deploy:
    name: "Deploy xesite"
    needs: build
    runs-on: alrest-xe-site
    if: github.ref == 'refs/heads/main'
    permissions:
      contents: read

    steps:
      - uses: actions/checkout@v4
      - uses: dorny/paths-filter@v3
        id: changes
        with:
          filters: |
            src:
              - 'cmd/**/*.go'
              - 'internal/**/*.go'
              - 'pb/*'
              - 'pb/**/*'
              - 'go.mod'
              - 'go.sum'
              - 'Earthfile'
              - 'manifest/**/*.yaml'
      - uses: azure/setup-kubectl@v4
        if: steps.changes.outputs.src == 'true'
      - name: Save Civo kubeconfig
        if: steps.changes.outputs.src == 'true'
        run: |
          curl -sL https://civo.com/get | sudo sh
          civo apikey add default $CIVO_TOKEN
          civo apikey current default
          civo kubernetes config --region phx1 aeacus --save --switch
        env:
          CIVO_TOKEN: ${{ secrets.CIVO_TOKEN }}
      - name: "Deploy"
        if: steps.changes.outputs.src == 'true'
        run: |
          kubectl apply -k manifest
          kubectl rollout restart -n default deploy/xesite