Skip to content

Commit

Permalink
wip releases workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
elabx committed Mar 10, 2023
1 parent 1158d74 commit c412c2e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
1 change: 1 addition & 0 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
uses: TriPSs/[email protected]
with:
github-token: ${{ secrets.github_token }}
version-file: './FieldtypeRecurringDates.info.json'

- name: create release
uses: actions/create-release@v1
Expand Down
8 changes: 8 additions & 0 deletions FieldtypeRecurringDates.info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"title": "Recurring Dates",
"version": "0.0.1-alpha",
"summary": "Field that stores recurring events from RRule input.",
"icon": "calendar-o",
"installs": "InputfieldRecurringDates",
"requires": "ProcessWire>=3.0.184, AlpineJS"
}
12 changes: 1 addition & 11 deletions FieldtypeRecurringDates.module
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,7 @@ class FieldtypeRecurringDates extends FieldtypeMulti
{


public static function getModuleInfo()
{
return array(
'title' => 'Recurring Dates',
'version' => 001,
'summary' => 'Field that stores recurring events from rrule input.',
'icon' => 'calendar-o',
'installs' => 'InputfieldRecurringDates',
'requires' => 'ProcessWire>=3.0.184, AlpineJS'
);
}


const defaultLimit = 10;
const EXTRAS_TABLE_NAME_SUFFIX = '_extras';
Expand Down

0 comments on commit c412c2e

Please sign in to comment.