We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f29d43c commit 89bc35cCopy full SHA for 89bc35c
.github/workflows/container.yml
@@ -10,20 +10,18 @@
10
name: Create and publish a Container image
11
12
on:
13
- workflow_run:
14
- workflows: ["Python tests"]
15
- branches: [main]
16
- types:
17
- - completed
18
-
+ push:
+ branches:
+ - "main"
+ tags:
+ - "v*"
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
0 commit comments