Skip to content

Commit bc124c2

Browse files
committed
Merge remote-tracking branch 'origin/main' into web-app
2 parents e17ecb0 + 1638957 commit bc124c2

36 files changed

+3363
-835
lines changed

.dockerignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
target
2+
.git
3+
.dockerignore
4+
install

.github/workflows/build.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Build and push Docker images
2+
on:
3+
push:
4+
branches:
5+
- release
6+
jobs:
7+
docker:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Login to GitHub Container Registry
11+
uses: docker/login-action@v3
12+
with:
13+
registry: ghcr.io
14+
username: ${{ github.repository_owner }}
15+
password: ${{ secrets.GITHUB_TOKEN }}
16+
- name: Build
17+
uses: docker/build-push-action@v5.3.0
18+
with:
19+
push: true
20+
tags: ghcr.io/zphrs/ucsc-menu

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
/target
22
/webui/dist
3+
/.vscode
4+
install
5+
secrets

.vscode/settings.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)