npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

strapi-plugin-github-workflow

v0.1.0

Published

A plugin to easily publish your site from Strapi.

Downloads

7

Readme

Strapi v4 - Site Publisher Plugin

This is a plugin for Strapi headless CMS. It lets you trigger a GitHub Action workflow when the site is ready to be published.

NPM version Actions Status PR Welcome

Introduction

Screenshot

When using Strapi as a headless CMS for a statically built website, you need a way to trigger the site to rebuild when content has been updated. The typical approach is to setup a Strapi managed webhook to trigger a CI/CD pipeline whenever content changes. This approach has it's issues. For example when making many changes to content, builds are triggered multiple times and deployments can fail due to the site being deployed concurrently.

This plugin tackles the publishing flow a different way. The site administrators can take their time and make many changes and once the content update is complete they can trigger a single build.

This plugin also checks to see if a build is already in progress and not allow the user to trigger another. Also, when a build has been triggered the user can wait on the plugin page to see when the build and deployment has completed.

Installation

Install this plugin with yarn:

yarn add strapi-plugin-github-workflow

Configuration

Generate a config file at config/plugins.js or config/development/plugins.js, etc...

module.exports = ({ env }) => ({
  'github-workflowr': {
    config: {
      owner: 'username', // The Github organisation or user
      repo: 'reponame', // The name of the repository
      workflow_id: 'rebuild.yml', // The workflow_id or filename
      authorizationHeader: env('GITHUB_AUTHORIZATION_HEADER'), // The GitHub personal access token with access to trigger workflows and view build status
      branch: 'master', // The branch the workflow should be triggered on
      inputs: {
        // Optional inputs to pass through to the GitHub workflow
        some_input: 'Some value',
        some_other_input: 'Some other value',
      }
    }
  }
});

Make sure you have variable in your .env file

GITHUB_TOKEN=XXXXXXX

Use the Plugin

When the plugin has been installed correctly just click on "Publish Site" in the sidebar under plugins then click "Publish".

Roadmap

  • [ ] Error handling
  • [ ] Support other deployment platforms (Gitlab CI, Bitbucket, Netlify, etc)
  • [ ] Configure the plugin from admin panel

Credits

This plugin is a fork of strapi-plugin-github-publish by Phantom Studios, many thanks to them for their work.