Skip to content

Commit

Permalink
different grep pattern for release version check
Browse files Browse the repository at this point in the history
  • Loading branch information
bburns632 committed May 3, 2024
1 parent ef43fca commit a1a960f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: grep -E "Version:" $GITHUB_WORKSPACE/DESCRIPTION
- name: Test if it is a production pattern (#.#.#)
shell: bash
run: grep -E "Version:\s\d+\.\d+\.\d+$" $GITHUB_WORKSPACE/DESCRIPTION
run: grep -E "Version: \d+\.\d+\.\d+$" $GITHUB_WORKSPACE/DESCRIPTION
devel_test:
name: ${{ matrix.os }} (R ${{ matrix.r-version }})
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit a1a960f

Please sign in to comment.