Skip to content

Commit

Permalink
Combine ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Kruhlmann committed Jul 15, 2024
1 parent 760b77a commit 0d44a5e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 36 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,31 @@ jobs:
main.efi
reboot.img
release:
needs: build
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Download build artifacts
uses: actions/download-artifact@v2
with:
name: reboot-artifacts
path: ./artifacts

- name: Create a Release
uses: elgohr/Github-Release-Action@v5
with:
body_path: CHANGELOG.md
files: |
Release.txt
LICENSE
prerelease: false
draft: false
fail_on_unmatched_files: true
generate_release_notes: true
make_latest: true
permissions:
contents: write
36 changes: 0 additions & 36 deletions .github/workflows/release.yml

This file was deleted.

0 comments on commit 0d44a5e

Please sign in to comment.