Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirri777 committed Jul 29, 2024
0 parents commit e5fb8c4
Show file tree
Hide file tree
Showing 12 changed files with 2,671 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Create release
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master

- name: Archive Release
uses: thedoctor0/zip-release@main
with:
type: "zip"
filename: "${{ github.event.repository.name }}.zip"
exclusions: "*.git* /*node_modules/* .editorconfig"

- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ${{ github.event.repository.name }}.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Package and release
on:
push:
branches:
- main
tags:
- "**"
jobs:
release:
runs-on: ubuntu-latest
env:
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Clone project
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Package and release
uses: BigWigsMods/packager@v2
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.vscode
Loading

0 comments on commit e5fb8c4

Please sign in to comment.