Skip to content

Commit 6f25e47

Browse files
committed
Add 'foundations/hulypulse/' from commit 'dc43901a73fdd2b9d063ef9e2f3a438bfa426ca0'
git-subtree-dir: foundations/hulypulse git-subtree-mainline: 252e462 git-subtree-split: dc43901
2 parents 252e462 + dc43901 commit 6f25e47

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

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

foundations/hulypulse/.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/off
2+
/target
3+
/scripts/other
4+
/scripts/off
5+
/scripts/typing-test.sh
6+
/scripts/TEST_LLEOTOKEN.html
7+
Justfile
8+
commit.sh
9+
/src/GO.sh
10+
/src/GOT.sh
11+
GO.sh
12+
TEST.sh
13+
TEST_WS.sh
14+
DROP_DB.sh
15+
TODO.txt
16+
DOCKER.sh
17+
/lleo
18+
/client
19+
/scripts

0 commit comments

Comments
 (0)