Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
branches:
- main
tags:
- '*'
- "*"

jobs:
Generate-Completion-Files:
Expand All @@ -21,7 +21,7 @@ jobs:
uses: actions/checkout@v6

- name: Install protoc
run: sudo apt-get install -y protobuf-compiler
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler

- name: Install Rust toolchain
run: |
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install host dependencies
run: sudo apt-get install -yq zip
run: sudo apt-get update && sudo apt-get install -yq zip

- name: Checkout the repo
uses: actions/checkout@v6
Expand Down Expand Up @@ -165,7 +165,6 @@ jobs:
if-no-files-found: error
retention-days: 7


Release:
name: Create release from tag
needs: Build-Release-Artifacts
Expand Down