summaryrefslogtreecommitdiffci
path: root/.github/workflows/build-and-deploy-prod.yml
diff options
from:
to:
context:
space:
mode:
authorGravatar SayaAndy <saya.andy@posteo.com> 2026-04-08 08:22:40 +0700
committerGravatar SayaAndy <saya.andy@posteo.com> 2026-04-08 08:22:40 +0700
commita3aa1dd07abfbbb27a7dfeeb536a6fcc51709256 (patch)
tree5c997d8efcfec65a68aba392f787f8191b8009d5 /.github/workflows/build-and-deploy-prod.yml
parent81a9147c5406e3b2f2441373b935d7c5de2780da (diff)
downloadweb-a3aa1dd07abfbbb27a7dfeeb536a6fcc51709256.tar.gz
web-a3aa1dd07abfbbb27a7dfeeb536a6fcc51709256.zip
feat: update all github actions, golang dependencies, golang to 1.26, alpine to 3.23
Diffstat (limited to '.github/workflows/build-and-deploy-prod.yml')
-rw-r--r--.github/workflows/build-and-deploy-prod.yml15
1 files changed, 10 insertions, 5 deletions
diff --git a/.github/workflows/build-and-deploy-prod.yml b/.github/workflows/build-and-deploy-prod.yml
index 24b6e0e..76012c6 100644
--- a/.github/workflows/build-and-deploy-prod.yml
+++ b/.github/workflows/build-and-deploy-prod.yml
@@ -13,24 +13,29 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v6
+
- name: Generate output.css with tailwindcss
uses: ZoeyVid/tailwindcss-update@main
with:
input: static/input.css
output: static/output.css
params: "--minify"
+
- name: Set up QEMU
- uses: docker/setup-qemu-action@v3
+ uses: docker/setup-qemu-action@v4
+
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v3
+ uses: docker/setup-buildx-action@v4
+
- name: Login to GitHub Container Registry
- uses: docker/login-action@v3
+ uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_TOKEN }}
+
- name: Build and push
- uses: docker/build-push-action@v6
+ uses: docker/build-push-action@v7
with:
context: .
file: ./Dockerfile
@@ -47,7 +52,7 @@ jobs:
needs: [build-and-push]
steps:
- name: Checkout
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
- name: Set up SSH connection for pl.saya.today
run: |