Skip to content

Commit

Permalink
ci: initial slack alert pipeline commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sangeet-joy_xero committed Oct 22, 2024
1 parent 7142037 commit cf0db65
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/check-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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: |
PACKAGE_NAME=$(jq -r '.name' composer.json)
echo "package name - $PACKAGE_NAME"
RESPONSE=$(curl -s https://packagist.org/packages/${PACKAGE_NAME}.json)
LATEST_VERSION=$(echo $RESPONSE | jq -r '.package.versions[0].version')
echo "latest packagist version $LATEST_VERSION"

0 comments on commit cf0db65

Please sign in to comment.