Revert "building feos-nginx package" #28
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: FeOS Release | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| jobs: | |
| build_release: | |
| permissions: | |
| contents: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Install Protobuf Compiler | |
| run: sudo apt-get update && sudo apt-get install protobuf-compiler -y | |
| - name: Run Tests | |
| run: make test | |
| - name: Build build-container | |
| run: make build-container | |
| - name: Build Kernel | |
| run: make kernel | |
| - name: Build initramfs | |
| run: make initramfs | |
| - name: Build UKI | |
| run: | | |
| mkdir keys | |
| echo "${{ secrets.SECUREBOOT_PRIVATEKEY }}" > keys/secureboot.key | |
| echo "${{ secrets.SECUREBOOT_CERTIFICATE }}" > keys/secureboot.pem | |
| openssl x509 -in keys/secureboot.pem -out keys/feos.crt -outform DER | |
| make uki | |
| mv target/uki.efi target/feos-${{ github.ref_name }}-x86_64.efi | |
| - name: Release | |
| uses: softprops/action-gh-release@v1 | |
| id: create_release | |
| with: | |
| name: FeOS ${{ github.ref_name }} | |
| body_path: docs/changelog/FeOS-${{ github.ref_name }}.md | |
| files: | | |
| target/feos-${{ github.ref_name }}-x86_64.efi | |
| keys/FeOS.crt |