Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement GitHub Actions Workflow for Releases #20

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions .github/workflows/gh-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Build site and Release

on:
push:
tags:
- 'v*'

permissions:
contents: write
id-token: write

jobs:
build-and-release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"

- name: Install dependencies
run: npm ci

- name: Build with Vite.js
run: npm run build

- name: Prepare build directory
run: |
mv build ollama-webui-lite
cp README.md ollama-webui-lite/README.md
cp LICENSE ollama-webui-lite/LICENSE

- name: Zip build artifacts
run: zip -r ollama-webui-lite.zip ./ollama-webui-lite

- name: Tar and Gzip build artifacts
run: tar -czvf ollama-webui-lite.tar.gz ./ollama-webui-lite
# Creates a .tar.gz file of the build directory

- name: Create Release and Upload Assets
uses: softprops/action-gh-release@v1
with:
name: ${{ github.ref_name }}
body: |
## Release ${{ github.ref_name }} of Ollama WebUI Lite

### 🚀 New Features
- List new features here
- Improvements or bug fixes

### 📦 Installation Instructions
To deploy Ollama WebUI Lite to your webserver, follow these steps:
1. Download the appropriate build archive for your system (`.zip` or `.tar.gz`).
2. Unzip or untar the archive in your desired directory.
3. Ensure your webserver (e.g., Apache, Nginx) points to the extracted directory.
4. Open your web browser and navigate to the URL of your webserver.

tag_name: ${{ github.ref_name }}
files: |
ollama-webui-lite.zip
ollama-webui-lite.tar.gz
token: ${{ secrets.GITHUB_TOKEN }}
draft: true # Adjust these as preferred
prerelease: true # Adjust these as preferred
Loading