Skip to content

Commit 37b6a6f

Browse files
committed
ci: add cd pipeline for updating packgaist
1 parent 598ee21 commit 37b6a6f

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "Update Packagist"
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
jobs:
8+
update:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
with:
15+
ref: ${{ github.head_ref }}
16+
- name: Update Packagist
17+
uses: mnavarrocarter/packagist-update@v1.0.0
18+
with:
19+
username: "Redberry LTD"
20+
api_token: ${{ secrets.PACKAGIST_TOKEN }}
21+
22+

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changelog
2+
3+
All notable changes to `page-builder-plugin` will be documented in this file.
4+
5+
## 1.0.0 - 202X-XX-XX
6+
7+
- initial release

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ $form->schema([
167167
PageBuilder::make('website_content')
168168
->reorderable(),
169169
]);
170+
170171
```
171172

172173
### Previewing in real time with iframe

0 commit comments

Comments
 (0)