diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 43e81ff..43fd6d8 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -22,7 +22,7 @@ jobs: uses: cachix/cachix-action@v16 with: name: trevstack - authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' + authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" - - name: Run checks - run: nix flake check \ No newline at end of file + - name: Check + run: nix flake check diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a8b74b7..0056802 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,7 +3,7 @@ name: Release Workflow on: push: tags: - - '*' + - "*" permissions: contents: write @@ -25,8 +25,11 @@ jobs: uses: cachix/cachix-action@v16 with: name: trevstack - authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' - + authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" + + - name: Check + run: nix flake check + - name: Build run: > nix build @@ -40,9 +43,10 @@ jobs: - name: Create Release uses: softprops/action-gh-release@v2 with: + generate_release_notes: true files: |- result*/bin/* - + # https://docs.docker.com/build/ci/github-actions/manage-tags-labels/ package: runs-on: ubuntu-latest @@ -85,4 +89,4 @@ jobs: with: push: true tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file + labels: ${{ steps.meta.outputs.labels }}