Giter VIP home page Giter VIP logo

is-unpublished's Introduction

is-unpublished

Build Version License

A scripting tool for CI environments to determine if your package needs to be published.

npm install -g is-unpublished

if is-unpublished; then
  # Do whatever you need to do to publish your package!
fi

This tool supports the following package formats:

Binary releases

If you don't have the ability to install NPM packages in your environment, you can install a binary release.

$ curl -L https://github.com/rzane/is-unpublished/releases/download/v0.3.3/is-unpublished-`uname -s`-`uname -m` > is-unpublished
$ chmod +x is-unpublished
$ ./is-unpublished --version
0.3.3

Github Action

You can also use this package as a Github action. The action version coincides with the published NPM package version.

Inputs

cwd

The directory your package lives in.

Outputs

name

The name of your package.

version

The current version of your package.

is-unpublished

Indicates that your package hasn't been published yet.

Example usage

Publish to NPM

Make sure to set NPM_TOKEN in your repo settings.

- name: Setup Node
  uses: actions/setup-node@v1
  with:
    node-version: 12
    registry-url: https://registry.npmjs.org

- name: Check
  id: check
  uses: rzane/[email protected]

- name: Publish
  run: yarn install && yarn publish --access public
  if: ${{ steps.check.outputs.is-unpublished == 'true' }}
  env:
    NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Release
  uses: actions/create-release@v1
  if: ${{ steps.check.outputs.is-unpublished == 'true' }}
  env:
    GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  with:
    tag_name: v${{ steps.check.outputs.version }}
    release_name: v${{ steps.check.outputs.version }}

Publish to RubyGems

Make sure to set RUBYGEMS_TOKEN in your repo settings.

- name: Setup Ruby
  uses: actions/setup-ruby@v1
  with:
    ruby-version: 2.6.x
    registry-url: https://registry.npmjs.org

- name: Check
  id: check
  uses: rzane/[email protected]

- name: Publish
  if: ${{ steps.check.outputs.is-unpublished == 'true' }}
  run: |
    mkdir -p $HOME/.gem
    touch $HOME/.gem/credentials
    chmod 0600 $HOME/.gem/credentials
    printf -- "---\n:rubygems_api_key: ${RUBYGEMS_TOKEN}\n" > $HOME/.gem/credentials
    gem build *.gemspec
    gem push *.gem
  env:
    RUBYGEMS_TOKEN: ${{ secrets.RUBYGEMS_TOKEN }}

- name: Release
  if: ${{ steps.check.outputs.is-unpublished == 'true' }}
  uses: actions/create-release@v1
  env:
    GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  with:
    tag_name: v${{ steps.check.outputs.version }}
    release_name: v${{ steps.check.outputs.version }}

is-unpublished's People

Contributors

rzane avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.