Skip to content

Commit

Permalink
renaemd repo on ghaction
Browse files Browse the repository at this point in the history
  • Loading branch information
astherath committed Sep 19, 2024
1 parent 583cd1e commit 6553775
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ permissions:
contents: write

on:
# also run on push to master
# also run on push to main
push:
branches:
- main
Expand Down Expand Up @@ -39,13 +39,13 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
# Push the version bump to the master branch using the PAT
# Push the version bump to the main branch using the PAT
- name: Push version bump
env:
GIT_COMMITTER_NAME: GitHub Action
GIT_COMMITTER_EMAIL: [email protected]
run: |
git commit -am "bumping version" && git push "https://${{ secrets.PAT_TOKEN }}@github.com/${{ github.repository }}" HEAD:master --follow-tags
git commit -am "bumping version" && git push "https://${{ secrets.PAT_TOKEN }}@github.com/${{ github.repository }}" HEAD:main --follow-tags
- name: Decode PEM file
run: echo "${{ secrets.CERTIFICATE_PEM_BASE64 }}" | base64 --decode > ./akv_test_cert.pem
Expand Down

0 comments on commit 6553775

Please sign in to comment.