Skip to content

Commit

Permalink
Merge pull request #12 from jayam04/v2.0
Browse files Browse the repository at this point in the history
Some workflow files
  • Loading branch information
jayam04 authored Jan 28, 2024
2 parents 93a32b0 + ed7bb1c commit fc96366
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build-and-update-extension.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build and Push

on:
push:
branches:
- master

jobs:
build_and_push:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14

- name: Run build script
run: |
scripts/create_build.sh
- name: Commit and push changes
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git add -A
git commit -m "Create latest build"
git push
Empty file modified scripts/create_build.sh
100644 → 100755
Empty file.

0 comments on commit fc96366

Please sign in to comment.