diff options
| author | Henrique Marques <[email protected]> | 2025-06-01 03:49:47 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-01 03:49:47 +0000 |
| commit | 9bc5747891118187a2f111b3fd1a4b5b04b53572 (patch) | |
| tree | 16bb5d92484aaef7534f0447fb388c9d9f55afb4 | |
| parent | ef0589ac1de9550e0b0f6ae94230e27f32e65d70 (diff) | |
Update main.yml
| -rw-r--r-- | .github/workflows/main.yml | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1985bd9..c85b9a6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,20 +18,10 @@ jobs: # Step 1: Check out the repository - uses: actions/checkout@v4 - # Step 2: Set up Hugo (this downloads and installs Hugo) - - name: Setup Hugo - uses: peaceiris/actions-hugo@v3 - with: - hugo-version: '0.119.0' - - # Step 3: Build the Hugo site - - name: Build the Hugo site - run: hugo --minify - - # Step 4: Deploy the 'public' folder to Neocities + # Step 2: Deploy the 'blog' folder to Neocities - name: Deploy to Neocities uses: bcomnes/[email protected] with: - api_token: ${{ secrets.NEOCITIES_SECRET }} # Your Neocities API token stored as a secret + api_token: ${{ secrets.NEOCITIES_SECRET }} # neocities API token stored as a secret cleanup: false - dist_dir: public # The Hugo output folder + dist_dir: blog |
