v2.11.10: fix loading payment options (rpc settings & rotation) #184
Workflow file for this run
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
name: Release Github zip | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: move files into dedicated folder /depay-woocommerce-payments | |
run: | | |
mkdir depay-woocommerce-payments && mv -t depay-woocommerce-payments depay-woocommerce-payments.php LICENSE readme.txt changelog.txt assets dist includes languages vendor | |
- uses: montudor/action-zip@v1 | |
with: | |
args: zip -qq -r depay-woocommerce-payments.zip depay-woocommerce-payments | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: depay-woocommerce-payments.zip |