Skip to content

Commit

Permalink
fix(release-automation): 👽 Tags are not being created. (#1287)
Browse files Browse the repository at this point in the history
Signed-off-by: Nishant Arora <1895906+whizzzkid@users.noreply.github.com>
  • Loading branch information
whizzzkid authored Sep 21, 2023
1 parent 2767f59 commit 3229c2a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:
pull_request:
branches:
- main
- rc/3.0-mv3

env:
XDG_CACHE_HOME: ${{ github.workspace }}/.cache
Expand Down Expand Up @@ -99,16 +98,19 @@ jobs:
needs: [test]
if: github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
steps:
- uses: google-github-actions/release-please-action@v3.7.3
- uses: google-github-actions/release-please-action@v3.7.11
with:
command: manifest-pr
changelog-notes-type: github
command: manifest-pr
include-v-in-tag: true
release-as: v3.0.0
release-type: node

release-assets:
runs-on: ubuntu-latest
needs: [test]
if: |
(contains(github.ref, 'refs/tags/') || github.ref == 'refs/heads/rc/3.0-mv3') &&
contains(github.ref, 'refs/tags/') &&
(github.event_name == 'push' || github.event_name == 'workflow_dispatch')
steps:
- name: Check out Git repository
Expand Down

0 comments on commit 3229c2a

Please sign in to comment.