Skip to content

Commit

Permalink
fix: make update
Browse files Browse the repository at this point in the history
  • Loading branch information
whichwit authored Nov 5, 2023
1 parent 273eb34 commit 335dfb4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/versionize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Filter list of changed projects
id: proj_filter
run: |
echo "projs=$(git diff-tree HEAD | awk '$1$2~/04/' | cut -f2- | grep -e ^VRDR$ -e ^VRDR.Client$ | jq -cnR '[inputs | select(length>0)]')" >> "$GITHUB_OUTPUT"
echo "projs=$(git diff-tree HEAD | awk '$1$2~/04/' | cut -f2- | grep -e ^VRDR$ -e ^VRDR.Client$ -e ^VRDR.CLI$ | jq -cnR '[inputs | select(length>0)]')" >> "$GITHUB_OUTPUT"
# - name: Advance project version
# if: steps.proj_filter.outputs.PROJ == matrix.proj
# run: echo "wee~"
Expand All @@ -55,12 +55,14 @@ jobs:
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
- name: Bump version and create changelog
working-directory: ./${{ matrix.proj }}
run: |
versionize --proj-version-bump-logic --skip-tag --changelog-all -w ${{ matrix.proj }}
versionize --proj-version-bump-logic --skip-tag --changelog-all
- name: Get current version
id: get-version
working-directory: ./${{ matrix.proj }}
run: |
echo "version=$(versionize inspect -w ${{ matrix.proj }})" >> $GITHUB_OUTPUT
echo "version=$(versionize inspect)" >> $GITHUB_OUTPUT
- name: Create release Pull Request
uses: peter-evans/create-pull-request@v5
id: cpr
Expand Down
1 change: 1 addition & 0 deletions VRDR.CLI/a
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Sun 05 Nov 2023 11:40:25 PM UTC
1 change: 1 addition & 0 deletions VRDR/a
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Sun 05 Nov 2023 11:40:11 PM UTC

0 comments on commit 335dfb4

Please sign in to comment.