Skip to content

Commit

Permalink
Merge pull request #109 from bmsteven/feat/test_branch
Browse files Browse the repository at this point in the history
Feat/test branch
  • Loading branch information
bmsteven authored Apr 25, 2022
2 parents b85f54e + 8c11e9d commit f91e2ee
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/bumpversion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,34 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
ref: develop
token: ${{ secrets.TOKEN }}
# ref: develop
- name: fetch all branches
run: |
- name: pull latest develop branch changes
run: git pull origin develop

# push changes to develop
- name: set global attributes
run: |
git config --global user.email "bmsteve96@gmail.com"
git config --global user.name "Benedict Steven"
git remote set-url origin https://x-access-token:${{ secrets.TOKEN }}@github.com/${{ github.repository }}
- name: Build
run: npm install
run: |
git fetch --all
git checkout develop
npm install
- name: Build
run: npm run build
run: |
git fetch --all
git checkout develop
npm run build
- name: bump version actions
uses: bmsteven/bump-version@1.0.3
Expand Down
1 change: 0 additions & 1 deletion src/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ const run = async () => {
} catch (error) {
console.log("error", error?.message);
}

// update PR
try {
const options = {
Expand Down

0 comments on commit f91e2ee

Please sign in to comment.