Prep for 1.2.0 release #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-dist | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
path: openarc | |
fetch-depth: 0 | |
- name: apt update | |
run: sudo apt update | |
- name: Install dependencies | |
run: sudo apt install libbsd-dev libidn2-dev libmilter-dev libssl-dev | |
- name: Build dist tarball | |
run: | | |
autoreconf -fiv | |
./configure --without-libjansson | |
make release | |
working-directory: ${{ github.workspace }}/openarc | |
- name: Save dist files | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: ${{ github.workspace }}/openarc/openarc-* |