-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
3 changed files
with
21 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
# Directories | ||
/.wordpress-org export-ignore | ||
/.github export-ignore | ||
|
||
# Files | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
# Items to ignore when downloading release | ||
# https://github.com/AyeCode/invoicing/blob/master/.gitattributes | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.scrutinizer.yml export-ignore | ||
composer.json export-ignore | ||
composer.lock export-ignore | ||
CONTRIBUTING.md export-ignore | ||
CODE_OF_CONDUCT.md export-ignore | ||
phpunit.xml export-ignore | ||
README.md export-ignore | ||
/tests/ export-ignore | ||
/.idea/ export-ignore | ||
/.github/ export-ignore | ||
/.wordpress-org/ export-ignore |
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,23 +1,18 @@ | ||
# https://github.com/AyeCode/invoicing/blob/master/.github/workflows/wordpress.yml | ||
name: Deploy to WordPress.org | ||
on: | ||
push: | ||
tags: | ||
- "*" | ||
- "*" | ||
jobs: | ||
tag: | ||
name: New tag | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
|
||
- name: Git config | ||
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | ||
|
||
- name: WordPress Plugin Deploy | ||
uses: 10up/action-wordpress-plugin-deploy@1.5.0 | ||
with: | ||
generate-zip: false | ||
uses: 10up/action-wordpress-plugin-deploy@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} | ||
SVN_USERNAME: ${{ secrets.SVN_USERNAME }} | ||
SVN_USERNAME: ${{ secrets.SVN_USERNAME }} | ||
SLUG: custom-card-link |