Handle ASCII DOM formatting. #128
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: CI/CD Workflow | |
| permissions: | |
| contents: write | |
| packages: write | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - 'v*.*.*' | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Compute image hash | |
| id: hash | |
| run: | | |
| cat .devcontainer/devcontainer.json .devcontainer/Dockerfile > .combined | |
| export HASH=$(sha256sum .combined | cut -c1-12) | |
| echo "hash=$HASH" >> $GITHUB_OUTPUT | |
| - name: Container Environment | |
| uses: devcontainers/ci@v0.3.1900000349 | |
| with: | |
| imageName: ghcr.io/amacal/i13c | |
| imageTag: ${{ steps.hash.outputs.hash }} | |
| push: always | |
| runCmd: make clean build test lint integration | |
| - name: Upload Built Binaries | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: i13c-binaries | |
| path: | | |
| bin/i13c-thrift | |
| bin/i13c-parquet | |
| LICENSE | |
| README.md | |
| release: | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Download build artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: i13c-binaries | |
| - name: Make Release Package | |
| run: fakeroot make release | |
| - name: Upload Release .tar.gz | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: i13c-tarball | |
| path: release/*.tar.gz | |
| - name: Upload Release .deb | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: i13c-deb | |
| path: release/*.deb | |
| - name: Extract Release Notes | |
| id: notes | |
| run: | | |
| { | |
| echo "body<<EOF" | |
| make notes | |
| echo "EOF" | |
| } >> $GITHUB_OUTPUT | |
| - name: Create GitHub Release | |
| uses: softprops/action-gh-release@v2 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| body: ${{ steps.notes.outputs.body }} | |
| files: | | |
| release/*.tar.gz | |
| release/*.deb |