-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (41 loc) · 1.22 KB
/
main.yml
File metadata and controls
52 lines (41 loc) · 1.22 KB
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
name: Build Backend
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
build-backend:
name: Build Backend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup up PNPM
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup up Node 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: 🏗️ Build Backend
run: pnpm build backend --prod
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Docker Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: dist/apps/backend
file: dist/apps/backend/Dockerfile
push: true
tags: |
ghcr.io/${{ github.repository }}/tauri-github-release-proxy:${{ github.sha }}
ghcr.io/${{ github.repository }}/tauri-github-release-proxy:latest