Skip to content

Commit

Permalink
Add action to update package
Browse files Browse the repository at this point in the history
  • Loading branch information
oxyc committed Aug 31, 2024
1 parent 5376fc5 commit 444d8eb
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# editorconfig.org

root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
42 changes: 42 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Build
on:
workflow_dispatch:
schedule:
- cron: '5 4 * * *'
jobs:
build:
name: Update plugin
runs-on: ubuntu-latest
permissions:
contents: write
outputs:
updated: ${{ steps.update.outputs.updated }}
version: ${{ steps.update.outputs.version }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Retrieve the latest version number
run: |
curl "https://kinsta.com/kinsta-tools/kinsta-mu-plugins.zip" > package.zip
{
echo 'LATEST_VERSION<<EOF'
unzip -p package.zip kinsta-mu-plugins.php | grep 'Version:' | sed 's/.*: //'
echo 'EOF'
} >> "$GITHUB_ENV"
rm package.zip
- name: Update repo
uses: generoi/github-action-update-plugins@master
id: update
with:
download_url: "https://kinsta.com/kinsta-tools/kinsta-mu-plugins.zip"
version: ${{ env.LATEST_VERSION }}
strip_archive_folder: 'false'

update-satis:
needs: build
if: needs.build.outputs.updated == 'true'
uses: generoi/packagist/.github/workflows/update.yml@master
secrets:
token: ${{ secrets.PACKAGIST_UPDATE_PAT }}

0 comments on commit 444d8eb

Please sign in to comment.