Skip to content

Commit

Permalink
add auto release
Browse files Browse the repository at this point in the history
  • Loading branch information
Himyu committed Feb 22, 2022
1 parent ac7445c commit 1799adc
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Release

# Run on every commit tag which begins with "v" (e.g., "v0.1.4")
on:
push:
tags:
- "v*"

# Automatically create a GitHub Release, with release details specified (the relevant commits)
jobs:
release:
name: "Release"
runs-on: "ubuntu-latest"
steps:

- uses: actions/checkout@v2

- name: Setup NodeJS
uses: actions/setup-node@v1
with:
node-version: '16'

- name: Create Zip
run: zip -r module-league-runes.zip package.json package-lock.json frontend/*

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
module-league-runes.zip
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "rcv-rune-gfx",
"name": "module-league-runes",
"version": "1.0.0",
"description": "Module that provides GFX elements for runes (reforged) League of Legends games",
"author": "Larce",
"author": "RCVolus",
"license": "MIT",
"toolkit": {
"modes": [
Expand Down

0 comments on commit 1799adc

Please sign in to comment.