Skip to content

Commit

Permalink
Merge pull request #312 from Ecwid/dev
Browse files Browse the repository at this point in the history
Updated github actions
  • Loading branch information
meteor-ec authored Dec 23, 2024
2 parents e35b43c + 740defc commit 07028c9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@master

- name: Install SVN ( Subversion )
run: |
Expand All @@ -22,4 +22,4 @@ jobs:
SLUG: ecwid-shopping-cart

- name: Output artifact URL
run: echo 'Artifact URL is ${{ steps.upload-plugin-artifact.outputs.artifact-url }}'
run: echo 'Artifact URL is ${{ steps.upload-plugin-artifact.outputs.artifact-url }}'
9 changes: 8 additions & 1 deletion .github/workflows/plugin-assets-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ jobs:
if: "contains(github.event.head_commit.message, 'readme update')"
environment: wordpress
steps:
- uses: actions/checkout@master
- name: Checkout
uses: actions/checkout@master

- name: Install SVN ( Subversion )
run: |
sudo apt-get update
sudo apt-get install subversion
- name: WordPress.org plugin asset/readme update
uses: 10up/action-wordpress-plugin-asset-update@stable
env:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@master

- name: Install SVN ( Subversion )
run: |
sudo apt-get update
sudo apt-get install subversion
- name: WordPress Plugin Deploy
id: deploy
uses: 10up/action-wordpress-plugin-deploy@stable
Expand All @@ -19,6 +25,7 @@ jobs:
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SLUG: ecwid-shopping-cart

- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
Expand Down

0 comments on commit 07028c9

Please sign in to comment.