Skip to content

automatic update package.json #2776

automatic update package.json

automatic update package.json #2776

Workflow file for this run

name: Update NUR Search Website
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: website
cancel-in-progress: false
permissions: # Required for GH pages
contents: read
pages: write
id-token: write
jobs:
update_website:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
with:
repository: nix-community/nur-search
submodules: true
- name: Setup Pages
id: pages
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
# TODO: Use nix / flakes
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
env:
HUGO_VERSION: 0.128.0
- name: Make website
run: make all
- name: Upload artifact
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4
with:
path: ./public
deploy_website:
runs-on: ubuntu-latest
needs: update_website
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4