Skip to content

Commit a1b7876

Browse files
committed
chore: script generating versions
0 parents  commit a1b7876

File tree

4 files changed

+1019
-0
lines changed

4 files changed

+1019
-0
lines changed
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Check and update
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
schedule:
8+
- cron: '0 */2 * * *'
9+
10+
jobs:
11+
build:
12+
runs-on: macOS-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
- uses: actions/setup-node@v4
18+
- name: Set git user
19+
run: |
20+
git config --global user.email [email protected]
21+
git config --global user.name cexbrayat
22+
git remote set-url origin https://$GITHUB_ACTOR:[email protected]/cexbrayat/angular-cli-diff.git
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25+
- name: Generate new version
26+
run: ./newVersion.sh

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ponyracer/README.md

0 commit comments

Comments
 (0)