Skip to content

Commit 252e462

Browse files
committed
Add 'foundations/hulylake/' from commit 'eb911a3bc7a759ee0642b2698620a2f0f68f7b61'
git-subtree-dir: foundations/hulylake git-subtree-mainline: abd0fa2 git-subtree-split: eb911a3
2 parents abd0fa2 + eb911a3 commit 252e462

34 files changed

+11557
-0
lines changed

foundations/hulylake/.dockerignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
target/
2+
.git/
3+
.jj/
4+
.cargo/
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Build and Push
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
14+
- name: Log to registry
15+
uses: docker/login-action@v3
16+
with:
17+
username: ${{ vars.DOCKER_USER }}
18+
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
19+
20+
- run: echo VERSION=$(grep '^version =' server/Cargo.toml | cut -d '"' -f 2) >> $GITHUB_ENV
21+
22+
- name: Set up Docker Buildx
23+
uses: docker/setup-buildx-action@v3
24+
25+
- name: Build and Push
26+
uses: docker/build-push-action@v6
27+
with:
28+
file: Dockerfile
29+
push: true
30+
tags: "${{ vars.DOCKER_USER }}/service_hulylake:${{ env.VERSION }},${{ vars.DOCKER_USER }}/service_hulylake:latest"
31+
platforms: linux/amd64,linux/arm64

foundations/hulylake/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/target
2+
.cargo
3+
.vscode

0 commit comments

Comments
 (0)