mirror of
https://github.com/wiiu-env/WUHBUtilsModule.git
synced 2024-11-01 01:45:06 +01:00
3c6e504109
Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 1 to 2. - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v1...v2) --- updated-dependencies: - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
59 lines
1.7 KiB
YAML
59 lines
1.7 KiB
YAML
name: CI-Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
clang-format:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: clang-format
|
|
run: |
|
|
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src
|
|
build-binary:
|
|
runs-on: ubuntu-22.04
|
|
needs: clang-format
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: create version.h
|
|
run: |
|
|
git_hash=$(git rev-parse --short "$GITHUB_SHA")
|
|
cat <<EOF > ./src/version.h
|
|
#pragma once
|
|
#define MODULE_VERSION_EXTRA " (nightly-$git_hash)"
|
|
EOF
|
|
- name: build binary
|
|
run: |
|
|
docker build . -t builder
|
|
docker run --rm -v ${PWD}:/project builder make
|
|
- uses: actions/upload-artifact@master
|
|
with:
|
|
name: binary
|
|
path: "*.wms"
|
|
deploy-binary:
|
|
needs: build-binary
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Get environment variables
|
|
id: get_repository_name
|
|
run: |
|
|
echo REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F / '{print $2}' | sed -e "s/:refs//") >> $GITHUB_ENV
|
|
echo DATETIME=$(echo $(date '+%Y%m%d-%H%M%S')) >> $GITHUB_ENV
|
|
- uses: actions/download-artifact@master
|
|
with:
|
|
name: binary
|
|
- name: zip artifact
|
|
run: zip -r ${{ env.REPOSITORY_NAME }}_${{ env.DATETIME }}.zip *.wms
|
|
- name: Create Release
|
|
uses: "softprops/action-gh-release@v2"
|
|
with:
|
|
tag_name: ${{ env.REPOSITORY_NAME }}-${{ env.DATETIME }}
|
|
draft: false
|
|
prerelease: true
|
|
generate_release_notes: true
|
|
name: Nightly-${{ env.REPOSITORY_NAME }}-${{ env.DATETIME }}
|
|
files: |
|
|
./${{ env.REPOSITORY_NAME }}_${{ env.DATETIME }}.zip |