Skip to content
This repository has been archived by the owner on Jul 14, 2024. It is now read-only.

Commit

Permalink
update: github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DevanAbinaya committed Sep 12, 2023
1 parent 701798a commit 6d61412
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Create Release

on:
workflow_dispatch:
push:
paths:
- "release.md"

jobs:
create-release:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18

- name: Get version from package.json
id: app-version
uses: martinbeentjes/[email protected]

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ steps.app-version.outputs.current-version}}
release_name: Moopa v${{ steps.app-version.outputs.current-version}}
body_path: "release.md"
draft: false
prerelease: false
23 changes: 23 additions & 0 deletions release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Changelog

This document contains a summary of all significant changes made to this release.

## Update v4.0.5

### Added

- Added option to disable custom list.
- Added schdeule
- Added redis for caching.
- Support for the GPL v3.0 license in the project documentation.

### Fixed

- Issue #66: Resolved a bug that caused the workflow to fail under specific conditions.
- Premid not detecting cover image when viewing info page

### Changed

- Changed the app's license from MIT to GPL v3.0 for improved open-source compliance and restrictions.
- Redesigned and rewrote portions of the information page to improve mobile-friendliness and enhance the user experience.
- Conducted a significant refactoring of the API codebase to enhance performance and scalability, resulting in a more efficient and responsive application.

0 comments on commit 6d61412

Please sign in to comment.