Skip to content

Commit

Permalink
🥽Automatize
Browse files Browse the repository at this point in the history
  • Loading branch information
viminio committed Dec 27, 2022
1 parent ad63f9b commit c56883a
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ReleaseTLauncher.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "release"
on:
push:
branches:
- "Pixelmon"
jobs:
release:
name: "Release"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@master
- name: Archive Release
uses: thedoctor0/zip-release@main
with:
type: 'zip'
filename: 'PixelmonGX.zip'
exclusions: '*.git* .editorconfig README.md *bin* *profileImage* CODE_OF_CONDUCT.md LICENSE'
- name: Upload Release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "TLauncher"
prerelease: false
title: "TLauncher Pixelmon 1.16.5"
files: 'PixelmonGX.zip'
25 changes: 25 additions & 0 deletions .github/workflows/ReleaseTechnic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "release"
on:
push:
branches:
- "Pixelmon"
jobs:
release:
name: "Release"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@master
- name: Archive Release
uses: thedoctor0/zip-release@main
with:
type: 'zip'
filename: 'PixelmonGX.zip'
exclusions: '*.git* profileImage/* README.md CODE_OF_CONDUCT.md LICENSE TLauncherAdditional.json Pixelmon.jar Pixelmon.json'
- name: Upload Release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "Technic"
prerelease: false
title: "Technic Pixelmon 1.16.5"
files: 'PixelmonGX.zip'

0 comments on commit c56883a

Please sign in to comment.