576 | slack alert #3
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: Check Packagist Publish | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
check-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
repository: XeroAPI/xero-php-oauth2 | |
path: xero-php-oauth2 | |
# - name: Get package version from composer file | |
# id: get_composer_version | |
# run: | | |
# COMPOSER_VERSION=$(jq -r '.version' composer.json) | |
- name: Get latest version from packgist | |
id: get_packagist_version | |
run: | | |
RESPONSE=$(curl -s https://repo.packagist.org/p2/xeroapi/xero-php-oauth2.json) | |
LATEST_VERSION=$(echo $RESPONSE | jq -r '.packages.xeroapi/xero-php-oauth2[0].version') | |
echo "latest packagist version $LATEST_VERSION" |