ci: update ci's with reusable release workflows

This commit is contained in:
Daylin Morgan 2023-09-15 00:37:19 -05:00
parent ad33888072
commit 44469e5ab0
Signed by: daylin
GPG Key ID: C1E52E7DD81DF79F
3 changed files with 12 additions and 66 deletions

View File

@ -3,22 +3,19 @@ name: ⚙️ Build Binaries
on:
workflow_call:
env:
APP_NAME: ccnz
NIM_VERSION: stable
jobs:
build-artifact:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ env.NIM_VERSION }}
# for cross compilation with ccnz
- uses: goto-bus-stop/setup-zig@v2
- name: Bootstrap with installed version

View File

@ -10,52 +10,15 @@ permissions:
jobs:
check-commits:
runs-on: ubuntu-latest
name: Check latest commit
outputs:
quit: ${{ steps.should_run.outputs.quit }}
steps:
- uses: actions/checkout@v3
- name: print latest commit
run: echo ${{ github.sha }}
- id: should_run
name: check latest commit is less than a day
if: ${{ github.event_name == 'schedule' }}
run: |
if [[ -n "$(git rev-list --since='24 hours' HEAD)" ]]; then
echo "quit=true" >> "$GITHUB_OUTPUT"
fi
uses: daylinmorgan/actions/.github/workflows/check-commits.yml@main
with:
since: "24 hours"
build-artifacts:
needs: check-commits
if: ${{ needs.check-commits.outputs.quit != 'true' }}
uses: ./.github/workflows/build.yml
create-release:
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ github.token }}
needs:
- build-artifacts
steps:
- uses: actions/checkout@v3
- name: Download Build Artifacts
uses: actions/download-artifact@v3
- run: ls -R artifacts
- name: Remove Old Nightly Release
run: |
gh release delete nightly --yes || true
git push origin :nightly || true
- name: Generate New Nightly Release
run: |
gh release create nightly \
--title "Nightly Release (Pre-release)" \
--prerelease \
./artifacts/*
uses: daylinmorgan/actions/.github/workflows/build-nim-forge.yml@main
generate-release:
needs: build-artifacts
uses: daylinmorgan/actions/.github/workflows/nightly.yml@main

View File

@ -10,22 +10,8 @@ permissions:
jobs:
build-artifacts:
uses: ./.github/workflows/build.yml
uses: daylinmorgan/actions/.github/workflows/build-nim-forge.yml@main
create-release:
env:
GH_TOKEN: ${{ github.token }}
runs-on: ubuntu-latest
needs:
- build-artifacts
steps:
- uses: actions/checkout@v3
- name: Download Build Artifacts
uses: actions/download-artifact@v3
- run: ls -R artifacts/
- name: Generate New Nightly Release
run: |
gh release create ${{ github.ref }} ./artifacts/*
needs: build-artifacts
uses: daylinmorgan/actions/.github/workflows/release.yml@main