We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e04415b commit b9efea2Copy full SHA for b9efea2
.github/workflows/release.yml
@@ -13,15 +13,15 @@ env:
13
REF_NAME: ${{ github.head_ref || github.ref_name }}
14
15
jobs:
16
- build_requirements_and_test:
+ build_and_test:
17
runs-on: ubuntu-latest
18
steps:
19
- uses: actions/checkout@v4
20
- uses: ./.github/reusable/install_and_test
21
- uses: ./.github/reusable/docker_build_and_push
22
release:
23
name: Release pushed tag
24
- needs: test
+ needs: build_and_test
25
26
27
- name: Create release
.github/workflows/test.yml
@@ -9,7 +9,7 @@ on:
9
- '*'
10
11
12
+ install_and_test:
0 commit comments