Skip to content

Commit

Permalink
testing release wf
Browse files Browse the repository at this point in the history
  • Loading branch information
cab404 committed May 3, 2024
1 parent 1d1d44b commit 483c366
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,22 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: determinatesystems/nix-installer-action@main
- run: nix build .
- run: nix build . -o resume.pdf
- uses: actions/upload-artifact@v4
with:
name: resume.pdf
path: result
path: resume.pdf
- uses: ncipollo/release-action@v1
if: ${{ github.ref == 'refs/heads/master' }}
with:
allowUpdates: true
artifacts: resume.pdf
makeLatest: true
tag: "latest"
omitBody: true
omitName: true

0 comments on commit 483c366

Please sign in to comment.