1.3.1 #44
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: Trigger Satis Build | |
on: | |
release: | |
types: | |
- created | |
env: | |
VERSION: ${GITHUB_REF#refs/tags/*} | |
jobs: | |
webhook: | |
name: Send Webhook | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Validate version number | |
if: ${{ (github.repository == 'newfold-labs/wp-module-coming-soon') && (github.event.release.prerelease == false) }} | |
run: | | |
taggedVersion=${{ env.VERSION }} | |
moduleVersion=`grep "define( 'NFD_COMING_SOON_MODULE_VERSION'," bootstrap.php | grep -Eo "[0-9\.]*"` | |
packageVersion=`grep '"version"' package.json | grep -Eo "[0-9\.]*"` | |
echo "Tagged version: $taggedVersion" | |
echo "Module version: $moduleVersion" | |
echo "Package version: $packageVersion" | |
[[ "$taggedVersion" == "$moduleVersion" ]] || exit 1 | |
[[ "$taggedVersion" == "$packageVersion" ]] || exit 1 | |
- name: Validate build directory | |
if: ${{ (github.repository == 'newfold-labs/wp-module-coming-soon') && (github.event.release.prerelease == false) }} | |
run: | | |
if [[ ! -d "build/${{ env.VERSION }}" ]]; then | |
echo "Build directory for version ${{ env.VERSION }} does not exist." | |
exit 1 | |
fi | |
- name: Set Package | |
id: package | |
env: | |
REPO: ${{ github.repository }} | |
run: echo ::set-output name=PACKAGE::${REPO##*/} | |
- name: Set Version | |
id: tag | |
run: echo ::set-output name=VERSION::${GITHUB_REF##*/} | |
- name: Repository Dispatch | |
uses: peter-evans/repository-dispatch@v1 | |
with: | |
token: ${{ secrets.WEBHOOK_TOKEN }} | |
repository: newfold-labs/satis | |
event-type: 'satis-build' | |
client-payload: >- | |
{ | |
"vendor": "${{ github.repository_owner }}", | |
"package": "${{ steps.package.outputs.PACKAGE }}", | |
"version": "${{ steps.tag.outputs.VERSION }}" | |
} |