We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34e4a21 commit 5bdba63Copy full SHA for 5bdba63
.github/workflows/container.yml
@@ -10,18 +10,20 @@
10
name: Create and publish a Container image
11
12
on:
13
- push:
14
- branches:
15
- - "main"
16
- tags:
17
- - "v*"
+ workflow_run:
+ workflows: ["Python tests"]
+ branches: [main]
+ types:
+ - completed
18
+
19
env:
20
REGISTRY: ghcr.io
21
IMAGE_NAME: ngine-io/scalr
22
23
jobs:
24
build-and-push-image:
25
runs-on: ubuntu-latest
26
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
27
permissions:
28
contents: read
29
packages: write
.github/workflows/tests.yml
@@ -9,8 +9,8 @@ jobs:
9
max-parallel: 3
matrix:
python-version:
- - "3.8"
- "3.10"
+ - "3.11"
steps:
- uses: actions/checkout@v3
0 commit comments