Skip to content

Commit ddafa71

Browse files
committed
Updated workflow runners
1 parent d9ceda3 commit ddafa71

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

.github/workflows/build-api-v3.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: API v3 build
1+
name: Build API v3
22
on:
33
push:
44
branches:
@@ -8,7 +8,13 @@ on:
88
- api-v3-v[0-9]+.[0-9]+.[0-9]+-** # Semver Pre-Release
99
paths:
1010
- services/api-v3/**
11-
11+
- .github/workflows/build-api-v3.yaml
12+
pull_request:
13+
branches:
14+
- main
15+
paths:
16+
- services/api-v3/**
17+
- .github/workflows/build-api-v3.yaml
1218
jobs:
1319
docker:
1420
runs-on: ubuntu-latest

.github/workflows/build-usage-stats.yaml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,6 @@ jobs:
2020
uses: actions/checkout@v4
2121
with:
2222
submodules: "recursive"
23-
# Set up python and poetry
24-
- name: Set up Python
25-
uses: actions/setup-python@v4
26-
with:
27-
python-version: 3.11
28-
- name: Install Poetry
29-
run: python3 -m pip install poetry==2.1.1
30-
- name: Build and stage local packages
31-
run: scripts/prepare-services
3223
- name: Get the version from the tag, if it exists
3324
run: |
3425
TAG=${{ github.event.release.tag_name }}

0 commit comments

Comments
 (0)