Skip to content

Commit

Permalink
first version
Browse files Browse the repository at this point in the history
  • Loading branch information
zoumingzhe committed Jul 14, 2024
1 parent 438e8e9 commit 7dc7ae6
Show file tree
Hide file tree
Showing 6 changed files with 73 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# This is a basic workflow to help you get started with Actions

name: Build Image

# Controls when the workflow will run
on:
# Triggers the workflow on push events but only for the "master" branch
push:
branches: ["master"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "transport"
mind-map:
# The type of runner that the job will run on
runs-on: ubuntu-latest

permissions:
contents: read
packages: write

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: "Login to GitHub Container Registry"
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}

- uses: actions/checkout@v4
with:
ref: "master"

- name: Build Image
run: export VERSION=$(cat VERSION) && make

- name: List all images
run: docker image ls

- name: Build Push
run:
docker push ghcr.io/podboy/mind-map:$(cat VERSION) |
docker push ghcr.io/podboy/mind-map:latest
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# temp files
tmp
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM ghcr.io/podboy/nginx

ARG VERSION
ARG RELEASE

LABEL maintainer="zoumingzhe@outlook.com" version=${VERSION}

RUN mkdir /app

COPY tmp/${RELEASE}/index.html /app/
COPY tmp/${RELEASE}/dist /app/dist/
COPY tmp/${RELEASE}/nginx.conf /etc/nginx/nginx.conf
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
MAKEFLAGS += --always-make

RELEASE := mind-map-electron-${VERSION}

all: build

build:
mkdir -p ${PWD}/tmp
rm -rf ${PWD}/tmp/${RELEASE}
tar -xzf ${PWD}/releases/${RELEASE}.tar.gz -C ${PWD}/tmp
docker build --build-arg VERSION=${VERSION} --build-arg RELEASE=${RELEASE} -t ghcr.io/podboy/mind-map:${VERSION} -t ghcr.io/podboy/mind-map:latest .
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.10.2
Binary file added releases/mind-map-electron-0.10.2.tar.gz
Binary file not shown.

0 comments on commit 7dc7ae6

Please sign in to comment.