-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6415d52
commit b0fbcc8
Showing
5 changed files
with
34 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...workflows/php-documentation-generator.yml → .github/workflows/on-push.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
name: PHP ApiGen | ||
name: On Push | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
apigen: | ||
PHP-DOCS-ApiGen: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checking Out Repo Data | ||
- name: Fetching Repository | ||
uses: actions/checkout@v1 | ||
- name: PHP Docs Generator | ||
- name: Generating PHP Documentation | ||
uses: varunsridharan/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: On Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "*" | ||
|
||
jobs: | ||
Envato Publisher: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Fetching Repository | ||
- uses: actions/checkout@v1 | ||
- name: Publishing Release To Envato | ||
uses: varunsridharan/action-envato-publisher@master | ||
with: | ||
envato_username: ${{ secrets.envato_username }} | ||
envato_personal_token: ${{ secrets.envato_token }} | ||
custom_command: "composer install --no-dev" | ||
exclude_list: "src/ gulpfile.js gulp-config.js composer.lock composer.json wp-pot.json envato_assets_exclude_list.txt .envatoassets .gitignore .editorconfig vendor/*/*/README.md vendor/*/*/.gitignore" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
screenshots/* | ||
psd/*.zip |