From 62dc40444c910e1ba5d55d7891ac9723c725cf4d Mon Sep 17 00:00:00 2001 From: Gautier Deleglise Date: Wed, 20 Mar 2024 16:36:31 +0100 Subject: [PATCH] Create packagist-deploy.yml --- .github/workflows/packagist-deploy.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/packagist-deploy.yml diff --git a/.github/workflows/packagist-deploy.yml b/.github/workflows/packagist-deploy.yml new file mode 100644 index 0000000..67baced --- /dev/null +++ b/.github/workflows/packagist-deploy.yml @@ -0,0 +1,20 @@ +name: Packagist Deploy + +on: + release: + types: [created] + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - uses: actions/checkout@v3 + - uses: mnavarrocarter/packagist-update@v1.0.0 + with: + username: "GautierDele" + api_token: ${{ secrets.PACKAGIST_TOKEN }} \ No newline at end of file