Skip to content

Commit

Permalink
build: remove release on tag push
Browse files Browse the repository at this point in the history
Starting the version 0.16.0 we will branch out from the main 1 week
before the release date, and then run the release workflow manually
  • Loading branch information
josedonizetti committed Jun 26, 2023
1 parent 676893a commit 9ab8117
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/mkdocs-latest.yaml
Expand Up @@ -3,10 +3,11 @@
#
name: Deploy the latest documentation
on:
push:
tags:
- "v*"
workflow_dispatch: {}
workflow_dispatch:
inputs:
ref:
description: The tag to be released, e.g. v0.0.1
required: true
jobs:
deploy:
name: Deploy the latest documentation
Expand All @@ -15,6 +16,7 @@ jobs:
- name: Checkout main
uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.ref }}
fetch-depth: 0
persist-credentials: true
- name: Login to docker.io registry
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/release.yaml
Expand Up @@ -3,9 +3,11 @@
#
name: Release
on:
push:
tags:
- "v*"
workflow_dispatch:
inputs:
ref:
description: The tag to be released, e.g. v0.0.1
required: true
jobs:
release:
name: Release X64 (Default)
Expand All @@ -23,6 +25,7 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.ref }}
submodules: true
fetch-depth: 0
- name: Install Cosign
Expand Down Expand Up @@ -82,6 +85,7 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.ref }}
submodules: true
fetch-depth: 0
- name: Install Cosign
Expand Down

0 comments on commit 9ab8117

Please sign in to comment.