Skip to content

Commit

Permalink
chore: script generating versions
Browse files Browse the repository at this point in the history
  • Loading branch information
cexbrayat committed Sep 19, 2024
0 parents commit a24004d
Show file tree
Hide file tree
Showing 4 changed files with 959 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/check-and-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Check and update

on:
push:
branches:
- master
schedule:
- cron: '0 */2 * * *'

jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Set git user
run: |
git config --global user.email [email protected]
git config --global user.name cexbrayat
git remote set-url origin https://$GITHUB_ACTOR:[email protected]/cexbrayat/angular-cli-diff.git
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Generate new version
run: ./newVersion.sh
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ponyracer/README.md
Loading

0 comments on commit a24004d

Please sign in to comment.