From 6d1cf193ef6b0040e34d6169d9ad228d9cd7fa61 Mon Sep 17 00:00:00 2001 From: Omar Olivares Urrutia Date: Fri, 29 Mar 2024 04:44:30 -0300 Subject: [PATCH] finally working --- .github/workflows/ci.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d273d48..6480877 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,15 +12,20 @@ on: jobs: build: runs-on: ubuntu-latest + steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Build - run: make - - name: Release - uses: softprops/action-gh-release@v2 + - uses: actions/checkout@v2 + - name: Run + run: | + make all + + - uses: marvinpinto/action-automatic-releases@latest with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + automatic_release_tag: "latest" + prerelease: true + title: "Paul Graham Essays" files: | *.epub *.pdf - *.csv \ No newline at end of file + *.csv