Skip to content

Commit

Permalink
don't try to split build and deploy workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
graymalkin committed Sep 26, 2023
1 parent bfeddc7 commit 6c15c74
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [ "master" ]

jobs:
build:
build-and-deploy:
runs-on: ubuntu-latest

steps:
Expand All @@ -21,16 +21,9 @@ jobs:
- name: Build website
run: make all

deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Compress site into tarball
run: tar cavf github-pages.tar.gz public/*


- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v2

- name: Compress site into tarball
run: tar cavf github-pages.tar.gz public/*

- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v2

0 comments on commit 6c15c74

Please sign in to comment.