ci: run pipeline on every push (#6219)

This commit is contained in:
Silvan
2023-07-17 10:55:41 +02:00
committed by GitHub
parent 1c354ca977
commit ecf9835cb8
2 changed files with 7 additions and 9 deletions

View File

@@ -1,6 +1,12 @@
name: ZITADEL CI/CD name: ZITADEL CI/CD
on: [pull_request, merge_group, workflow_dispatch] on:
push:
tags-ignore:
- "*"
pull_request:
merge_group:
workflow_dispatch:
permissions: permissions:
contents: write contents: write
@@ -84,8 +90,6 @@ jobs:
secrets: secrets:
GCR_JSON_KEY_BASE64: ${{ secrets.GCR_JSON_KEY_BASE64 }} GCR_JSON_KEY_BASE64: ${{ secrets.GCR_JSON_KEY_BASE64 }}
with: with:
node_version: '16'
buf_version: 'latest'
image: ${{ needs.container.outputs.image }} image: ${{ needs.container.outputs.image }}
semantic_version: '19.0.2' semantic_version: '19.0.2'
image_name: 'ghcr.io/zitadel/zitadel' image_name: 'ghcr.io/zitadel/zitadel'

View File

@@ -3,12 +3,6 @@ name: Release
on: on:
workflow_call: workflow_call:
inputs: inputs:
node_version:
required: true
type: string
buf_version:
required: true
type: string
semantic_version: semantic_version:
required: true required: true
type: string type: string