Skip to content

production-ready release #1

production-ready release

production-ready release #1

Workflow file for this run

name: Update Packagist
on:
push:
tags:
- 'v*.*.*' # Triggers on version tags like v1.0.0
jobs:
packagist:
runs-on: ubuntu-latest
steps:
- name: Notify Packagist
run: |
curl -XPOST \
-H "Content-Type: application/json" \
-d "{\"repository\":\"https://github.com/FastPix/fastpix-php\"}" \
https://packagist.org/api/update-package?username=${{ secrets.PACKAGIST_USERNAME }}&apiToken=${{ secrets.PACKAGIST_TOKEN }}