diff --git a/.github/workflows/ci-master.yml b/.github/workflows/ci-master.yml index 6d41eb5..76472a0 100644 --- a/.github/workflows/ci-master.yml +++ b/.github/workflows/ci-master.yml @@ -19,6 +19,13 @@ jobs: docker run --rm \ --volume="${{ github.workspace }}:/srv/jekyll" \ jekyll/builder:latest /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll && bundle install && bundle exec jekyll build && bundle exec rake search:init" + - name: Deploy to Neocities + uses: bcomnes/deploy-to-neocities@master + with: + api_token: ${{ secrets.NEOCITIES_API_TOKEN }} + cleanup: true + dist_dir: _site + jekyll-3-8-5: name: Build Jekyll site (v3.8.5) runs-on: ubuntu-latest diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3fb7809..076b859 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,12 @@ jobs: docker run --rm \ --volume="${{ github.workspace }}:/srv/jekyll" \ jekyll/builder:latest /bin/bash -c "gem install bundler && chmod -R 777 /srv/jekyll && bundle install && bundle exec jekyll build && bundle exec rake search:init" + - name: Deploy to Neocities + uses: bcomnes/deploy-to-neocities@master + with: + api_token: ${{ secrets.NEOCITIES_API_TOKEN }} + cleanup: true + dist_dir: _site jekyll-3-8-5: name: Build Jekyll site (v3.8.5)