Skip to content

Commit

Permalink
actions: Create release on push
Browse files Browse the repository at this point in the history
  • Loading branch information
dracc authored and mborgerson committed Dec 30, 2021
1 parent 0a18705 commit 28a5f72
Showing 1 changed file with 117 additions and 2 deletions.
119 changes: 117 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,32 @@ name: CI

on:
push:
paths-ignore:
paths-ignore:
- '*.md'
- '*.yml'
pull_request:
paths-ignore:
paths-ignore:
- '*.md'
- '*.yml'

jobs:
Init:
runs-on: ubuntu-latest
steps:
- name: Create build tag
run: |
export BUILD_TAG=build-$(date -u +'%Y%m%d%H%M')
echo "BUILD_TAG=$BUILD_TAG" >> $GITHUB_ENV
echo -n $BUILD_TAG > tag
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: tag
path: tag

build-windows:
runs-on: windows-latest
needs: Init
env:
POWERSHELL_TELEMETRY_OPTOUT: 1
strategy:
Expand Down Expand Up @@ -47,6 +62,7 @@ jobs:

build-linux:
runs-on: ubuntu-latest
needs: Init
steps:
- uses: actions/checkout@v2
- name: CMake generate
Expand All @@ -67,6 +83,7 @@ jobs:

build-macos:
runs-on: macos-latest
needs: Init
steps:
- uses: actions/checkout@v2
- name: CMake generate
Expand All @@ -84,3 +101,101 @@ jobs:
with:
name: extract-xiso_${{ runner.os }}
path: artifacts

Release:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
needs: [build-windows, build-linux, build-macos]
env:
BUILD_TAG:
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
with:
path: dist
- name: Create archives
run: |
pushd dist/extract-xiso_Win32_Release
zip -r ../extract-xiso-win32-release.zip *
popd
pushd dist/extract-xiso_Win32_Debug
zip -r ../extract-xiso-win32-debug.zip *
popd
###
# Comment out 64 bit builds as they are currently broken
###
# pushd dist/extract-xiso_Win64_Release
# zip -r ../extract-xiso-win64-release.zip *
# popd
# pushd dist/extract-xiso_Win64_Debug
# zip -r ../extract-xiso-win64-debug.zip *
# popd
# pushd dist/extract-xiso_macOS
# zip -r ../extract-xiso-macos.zip *
# popd
- name: Get package info
run: |
echo "BUILD_TAG=$(cat dist/tag/tag)" >> $GITHUB_ENV
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.BUILD_TAG }}
release_name: ${{ env.BUILD_TAG }}
draft: false
prerelease: false
- name: Upload release assets (Win32 build)
id: upload-release-assets-win32-release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_name: extract-xiso-win32-release.zip
asset_path: dist/extract-xiso-win32-release.zip
asset_content_type: application/zip
- name: Upload release assets (Win32 debug build)
id: upload-release-assets-win32-debug
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_name: extract-xiso-win32-debug.zip
asset_path: dist/extract-xiso-win32-debug.zip
asset_content_type: application/zip
###
# Comment out 64 bit builds as they are currently broken
###
# - name: Upload release assets (Win64 build)
# id: upload-release-assets-win64-release
# uses: actions/[email protected]
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_name: extract-xiso-win64-release.zip
# asset_path: dist/extract-xiso-win64-release.zip
# asset_content_type: application/zip
# - name: Upload release assets (Win64 debug build)
# id: upload-release-assets-win64-debug
# uses: actions/[email protected]
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_name: extract-xiso-win64-debug.zip
# asset_path: dist/extract-xiso-win64-debug.zip
# asset_content_type: application/zip
# - name: Upload release assets (macOS build)
# id: upload-release-assets-macos-release
# uses: actions/[email protected]
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_name: extract-xiso-macos.zip
# asset_path: dist/extract-xiso-macos.zip
# asset_content_type: application/zip

0 comments on commit 28a5f72

Please sign in to comment.