Skip to content

Commit

Permalink
1.4.5 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
funmaker committed Sep 23, 2021
1 parent 2841bc7 commit 8976b68
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Containers
name: Containers
on:
push:
tags:
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build
name: Docker Build
uses: docker/build-push-action@v2
with:
context: .
Expand Down
38 changes: 38 additions & 0 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Release
on:
push:
tags:
- 'v*'
workflow_dispatch: []

jobs:
build:
runs-on: [ubuntu-latest]
steps:
-
name: Checkout
uses: actions/checkout@v2.3.4
-
name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 14
-
name: Install Deps
run: npm install --unsafe-perm
-
name: Build Production
run: npm run build:prod
-
name: Compress Artifacts
run: |
cd dist
zip -r ../ProductionBuild.zip *
cd ..
-
name: Upload Release
uses: softprops/action-gh-release@v1
with:
files: ProductionBuild.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Hybooru

<p align="center"><img src="static/logo.svg" width="256"></p>
<p align="center">
<img src="static/logo.svg" width="256"><br/>
<a href="https://github.com/funmaker/Hybooru/releases/latest"><img src="https://github.com/funmaker/Hybooru/actions/workflows/release_build.yml/badge.svg"></a>
<a href="https://github.com/funmaker/Hybooru/pkgs/container/hybooru"><img src="https://github.com/funmaker/Hybooru/actions/workflows/docker_build.yml/badge.svg"></a>
</p>

[Hydrus](https://github.com/hydrusnetwork/hydrus)-based booru-styled imageboard in React, inspired by [hyve](https://github.com/imtbl/hyve).

Expand Down
9 changes: 7 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"name": "hybooru",
"description": "Hydrus-based booru-styled imageboard in React",
"version": "1.4.4",
"version": "1.4.5",
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"main": "server.ts",
"author": "Fun Maker",
"repository": "https://github.com/funmaker/webapp-boilerplate",
Expand Down

0 comments on commit 8976b68

Please sign in to comment.