Add version number to the archive #6
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" | |
on: | |
push: | |
branches: | |
- "main" | |
tags: | |
- "*" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
BuildMac: | |
runs-on: "macos-13" | |
strategy: | |
matrix: | |
config: | |
- "Debug" | |
- "Release" | |
steps: | |
- name: "Get version" | |
run: 'if [[ $GITHUB_REF =~ ^refs/tag/ ]]; then echo ${GITHUB_REF#refs/tag/}; else echo master; fi > "$GITHUB_OUTPUT"' | |
id: "get-version" | |
- uses: "actions/checkout@v3" | |
with: | |
submodules: "recursive" | |
- name: "Run build-macos.sh" | |
run: "./build-macos.sh ${{ matrix.config }} ${{ steps.get-version.outputs.version }}" | |
- uses: "actions/upload-artifact@v3" | |
with: | |
name: "libcurl-macos-${{ matrix.config }}" | |
path: "release/*.tar.gz" | |
BuildLinux: | |
runs-on: "ubuntu-22.04" | |
strategy: | |
matrix: | |
config: | |
- "Debug" | |
- "Release" | |
steps: | |
- name: "Get version" | |
run: 'if [[ $GITHUB_REF =~ ^refs/tag/ ]]; then echo ${GITHUB_REF#refs/tag/}; else echo master; fi > "$GITHUB_OUTPUT"' | |
id: "get-version" | |
- uses: "actions/checkout@v3" | |
with: | |
submodules: "recursive" | |
- name: "Run build-linux.sh" | |
run: "./build-linux.sh ${{ matrix.config }} ${{ steps.get-version.outputs.version }}" | |
- uses: "actions/upload-artifact@v3" | |
with: | |
name: "libcurl-linux-${{ matrix.config }}" | |
path: "release/*.tar.gz" | |
BuildWindows: | |
runs-on: "windows-2022" | |
strategy: | |
matrix: | |
config: | |
- "Debug" | |
- "Release" | |
steps: | |
- name: "Get version" | |
run: 'if [[ $GITHUB_REF =~ ^refs/tag/ ]]; then echo ${GITHUB_REF#refs/tag/}; else echo master; fi > "$GITHUB_OUTPUT"' | |
id: "get-version" | |
- uses: "actions/checkout@v3" | |
with: | |
submodules: "recursive" | |
- name: "Run Build-Windows.ps1" | |
run: "./Build-Windows.ps1 -Configuration ${{ matrix.config }} -Version ${{ steps.get-version.outputs.version }}" | |
- uses: "actions/upload-artifact@v3" | |
with: | |
name: "libcurl-linux-${{ matrix.config }}" | |
path: "release/libcurl-windows-${{ matrix.config }}.zip" | |
Release: | |
runs-on: "ubuntu-22.04" | |
if: "github.event_name == 'push' && contains(github.ref, 'refs/tags/')" | |
needs: [BuildMac, BuildLinux, BuildWindows] | |
permissions: | |
contents: "write" | |
steps: | |
- name: "Get Metadata" | |
id: "metadata" | |
run: | | |
echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT | |
- name: "Download build artifacts" | |
uses: "actions/download-artifact@v3" | |
- name: "Create Release" | |
uses: "softprops/action-gh-release@1e07f4398721186383de40550babbdf2b84acfc5" | |
with: | |
draft: true | |
tag_name: "${{ steps.metadata.outputs.version }}" | |
name: "${{ steps.metadata.outputs.version }}" | |
files: | | |
${{ github.workspace }}/**/*.tar.gz | |
${{ github.workspace }}/**/*.zip |