Skip to content
Open
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
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ on:
required: false
default: "ubuntu-22.04"
type: string
permissions:
contents: read
actions: read
jobs:
build-source-package:
runs-on: ubuntu-22.04
Expand All @@ -32,7 +35,11 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
path: sources
path: repo
- name: Copy source code to build dir
run: |
mkdir -p sources
rsync -a --exclude='.git' repo/ sources/
- name: Validate configure.ac version matches GitHub Release (only on release)
if: github.event.release.tag_name != ''
env:
Expand Down