Bump Schemas from c4e38d1 to 718d3d4
#1747
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: Build | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Build static website | |
| run: ./build.sh | |
| env: | |
| UID: 1001 | |
| - name: Create website archive | |
| run: tar -zcvf ${{ github.event.repository.name }}.tar.gz -C _site ./ | |
| - name: Upload website archive as artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ github.event.repository.name }}.tar.gz | |
| path: ${{ github.event.repository.name }}.tar.gz | |
| release: | |
| if: startsWith(github.ref, 'refs/tags') | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download website archive | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: ${{ github.event.repository.name }}.tar.gz | |
| - name: Create checksum | |
| run: sha256sum --tag ${{ github.event.repository.name }}.tar.gz > SHASUMS | |
| - name: Create release | |
| id: create_release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| name: Release ${{ github.ref_name }} | |
| draft: false | |
| prerelease: false | |
| files: | | |
| ${{ github.event.repository.name }}.tar.gz | |
| SHASUMS |