Skip to content

Commit

Permalink
DEBUG: testing release workflow regex
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallmcdonnell authored Jan 12, 2024
1 parent 1ff8547 commit 6d17832
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ env:

on:
push:
tags: 'v[0-9]+.[0-9]+.[0-9]+-*'
tags: 'foo-v[0-9]+.[0-9]+.[0-9]+-*'

jobs:
build:
Expand All @@ -14,12 +14,12 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.8"]
python-version: ["3.9"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/test-for-release-format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
env:
POETRY_VERSION: 1.4.2

on:
push:
tags:
- 'test-v[0-9]+.[0-9]+.[0-9]+*'
- 'v[0-9]+.[0-9]+.[0-9]+*'

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9"]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
8 changes: 4 additions & 4 deletions .github/workflows/test-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ env:

on:
push:
tags: 'test-v[0-9]+.[0-9]+.[0-9]+-*'
tags: 'foo-test-v[0-9]+.[0-9]+.[0-9]+-*'

jobs:
build:
Expand All @@ -14,12 +14,12 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.8"]
python-version: ["3.9"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down

0 comments on commit 6d17832

Please sign in to comment.