Skip to content

Commit

Permalink
ci: Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nlemoine committed Oct 17, 2023
1 parent 4628ded commit e4ca5b5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 6 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
on:
push:
branches:
- main

name: CI

jobs:
release:
uses: mindkomm/workflows/.github/workflows/release.yml@main
17 changes: 11 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,23 @@
"description": "Collection of link helper functions for WordPress themes",
"license": "MIT",
"require": {
"php": ">=7.0.0"
"php": ">=7.0.0"
},
"autoload": {
"files": [
"autoload.php"
]
"files": [
"autoload.php"
]
},
"authors": [
{
"name": "Lukas Gaechter",
"email": "[email protected]",
"homepage": "https://www.mind.ch"
}
]
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"mindkomm/qa": "^0.4.1"
}
}

0 comments on commit e4ca5b5

Please sign in to comment.