Skip to content

Update plugins

Update plugins #29

Workflow file for this run

name: Update plugins
on:
workflow_dispatch:
permissions:
contents: write
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v20
- name: Build plugins
run: |
nix shell nixpkgs#{bash,coreutils,vivid} \
-i --command bash -c './build.sh'
- name: Commit and push
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
message: 'chore: update plugins'