Skip to content

Commit

Permalink
ci: update ci's with reusable release workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
daylinmorgan committed Sep 15, 2023
1 parent ad33888 commit 44469e5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 66 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
51 changes: 7 additions & 44 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
20 changes: 3 additions & 17 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 44469e5

Please sign in to comment.