Remove gitea action, deployment will happen a different way

This commit is contained in:
2025-01-29 17:47:17 -08:00
parent 42f7d148b4
commit 47e00f7a3c

View File

@ -1,17 +0,0 @@
name: Deploy Website
run-name: ${{ gitea.actor }} is deploying the website...
on:
release:
types: [published]
jobs:
Deploy-Website:
steps:
- name: Download release archive
run: wget "https://git.colormatic.org/ColormaticStudios/Colormatic-Website/releases/download/latest/release.tar.gz"
- name: Clear existing deployment
run: rm -r ${{ secrets.WEBPATH }}/* # Scary
- name: Extract release archive
run: tar -xf release.tar.gz -C ${{ secrets.WEBPATH }}/
- name: Remove release archive
run: rm release.tar.gz