Skip to content

Commit

Permalink
Added Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
muleyo committed Dec 11, 2022
1 parent c3dfdee commit 1c16bc3
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# These are supported funding model platforms

github: cleanlock
custom: bit.ly/muleyo
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: PartyRaidFrameResize # description of this workflow, can be anything you want

# triggers when pushing a tag
on:
push:
tags:
- '**'

env:
CF_API_KEY: ${{ secrets.CF_API_KEY }}
WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }}
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }}
# for github releases, this secret is automatically provided to the workflow
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # reads history for commit changelog

- uses: BigWigsMods/packager@v2
2 changes: 0 additions & 2 deletions Config/Config.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
local PFR_Config = PFR:NewModule("PFR_Config")

function PFR_Config:OnEnable()
local LSM = LibStub("LibSharedMedia-3.0")

-- Create Menu
local options = {
type = 'group',
Expand Down

0 comments on commit 1c16bc3

Please sign in to comment.