Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
7 additions and
6 deletions
-
.github/workflows/build-code.yml
-
.github/workflows/docker-image.yml
-
CHANGELOG.md
-
package.json
|
|
@ -1,6 +1,7 @@ |
|
|
|
name: Build code |
|
|
|
|
|
|
|
on: |
|
|
|
pull_request: |
|
|
|
workflow_dispatch: |
|
|
|
|
|
|
|
jobs: |
|
|
@ -13,13 +14,13 @@ jobs: |
|
|
|
steps: |
|
|
|
- name: Checkout code |
|
|
|
uses: actions/checkout@v3 |
|
|
|
|
|
|
|
|
|
|
|
- name: Use Node.js ${{ matrix.node_version }} |
|
|
|
uses: actions/setup-node@v3 |
|
|
|
with: |
|
|
|
node-version: ${{ matrix.node_version }} |
|
|
|
cache: 'yarn' |
|
|
|
|
|
|
|
|
|
|
|
- name: Install dependencies |
|
|
|
run: yarn install --frozen-lockfile |
|
|
|
|
|
|
|
|
|
@ -21,7 +21,7 @@ jobs: |
|
|
|
with: |
|
|
|
images: ghostfolio/ghostfolio |
|
|
|
tags: | |
|
|
|
type=raw,value=linux-arm64-{{version}} |
|
|
|
type=semver,pattern={{version}} |
|
|
|
|
|
|
|
- name: Set up QEMU |
|
|
|
uses: docker/setup-qemu-action@v2 |
|
|
@ -41,7 +41,7 @@ jobs: |
|
|
|
uses: docker/build-push-action@v3 |
|
|
|
with: |
|
|
|
context: . |
|
|
|
platforms: linux/arm64 |
|
|
|
platforms: linux/amd64,linux/arm64 |
|
|
|
push: ${{ github.event_name != 'pull_request' }} |
|
|
|
tags: ${{ steps.meta.outputs.tags }} |
|
|
|
labels: ${{ steps.meta.output.labels }} |
|
|
|
|
|
@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. |
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
## 1.184.1 - 28.08.2022 |
|
|
|
## 1.184.2 - 28.08.2022 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
{ |
|
|
|
"name": "ghostfolio", |
|
|
|
"version": "1.184.1", |
|
|
|
"version": "1.184.2", |
|
|
|
"homepage": "https://ghostfol.io", |
|
|
|
"license": "AGPL-3.0", |
|
|
|
"scripts": { |
|
|
|