Skip to content

Commit 88cb167

Browse files
committed
action: only build binary for debian for now, remove --draft from release
1 parent 0c6f2bd commit 88cb167

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,14 @@ jobs:
1212
release:
1313
runs-on: ubuntu-22.04
1414
steps:
15-
- name: Create release (draft)
15+
- name: Create release
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1818
tag: ${{ github.ref_name }}
1919
run: |
2020
gh release create "$tag" \
2121
--repo="$GITHUB_REPOSITORY" \
2222
--title="$tag" \
23-
--draft \
2423
--generate-notes
2524
2625
build:
@@ -30,8 +29,8 @@ jobs:
3029
fail-fast: false
3130
matrix:
3231
distro:
33-
- { name: "ubuntu", image: "ubuntu:latest", suffix: "linux-ubuntu-amd64" }
34-
- { name: "debian", image: "debian:latest", suffix: "linux-debian-amd64" }
32+
# - { name: "ubuntu", image: "ubuntu:latest", suffix: "linux-ubuntu-amd64" }
33+
- { name: "debian", image: "debian:latest", suffix: "linux-amd64" }
3534

3635
container:
3736
image: ${{ matrix.distro.image }}

0 commit comments

Comments
 (0)