Skip to content

Commit

Permalink
Merge pull request #5639 from select2/github-actions-updates
Browse files Browse the repository at this point in the history
GitHub Actions updates
  • Loading branch information
kevin-brown committed Sep 12, 2019
2 parents 5813083 + 2e4c113 commit 233424d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 32 deletions.
54 changes: 27 additions & 27 deletions .github/workflows/package-deploy.yml
Expand Up @@ -8,33 +8,33 @@ on:
release: ~

jobs:
deploy_github:
name: GitHub Package Registry
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 8
uses: actions/setup-node@v1
with:
node-version: 8
registry-url: https://npm.pkg.github.com/
scope: '@select2'
- name: npm install
run: npm install
- name: Run linting, tests, minify
run: grunt
- name: Deploy (release)
if: github.event_name == 'release'
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Deploy (release candidate)
if: github.event_name == 'push'
run: |
npm --no-git-tag-version version prerelease
npm publish --tag next
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
# deploy_github:
# name: GitHub Package Registry
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v1
# - name: Use Node.js 8
# uses: actions/setup-node@v1
# with:
# node-version: 8
# registry-url: https://npm.pkg.github.com/
# scope: '@select2'
# - name: npm install
# run: npm install
# - name: Run linting, tests, minify
# run: grunt
# - name: Deploy (release)
# if: github.event_name == 'release'
# run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
# - name: Deploy (release candidate)
# if: github.event_name == 'push'
# run: |
# npm --no-git-tag-version version prerelease
# npm publish --tag next
# env:
# NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
deploy_npm:
name: NPM
runs-on: ubuntu-latest
Expand Down
10 changes: 5 additions & 5 deletions README.md
@@ -1,6 +1,6 @@
Select2
=======
[![Build Status][travis-ci-image]][travis-ci-status]
![Build Status][github-actions-image]
[![cdnjs](https://img.shields.io/cdnjs/v/select2.svg)][cdnjs]
[![jsdelivr](https://data.jsdelivr.com/v1/package/npm/select2/badge)][jsdelivr]

Expand Down Expand Up @@ -77,7 +77,8 @@ make a pull request back to Select2 here on GitHub.
Documentation
-------------
The documentation for Select2 is available
[through GitHub Pages][documentation] and is located within the [separate `select2/docs` repository][documentation-repository].
[online at the documentation website][documentation] and is located within the
[`docs` directory of this repository][documentation-directory].

Community
---------
Expand All @@ -91,13 +92,12 @@ The license is available within the repository in the [LICENSE][license] file.
[cdnjs]: http://www.cdnjs.com/libraries/select2
[community]: https://select2.org/getting-help
[documentation]: https://select2.org
[documentation-repository]: https://github.com/select2/docs
[documentation-directory]: https://github.com/select2/select2/tree/develop/docs
[freenode]: https://freenode.net/
[github-actions-image]: https://github.com/select2/select2/workflows/CI/badge.svg
[jsdelivr]: https://www.jsdelivr.com/package/npm/select2
[license]: LICENSE.md
[releases]: https://github.com/select2/select2/releases
[travis-ci-image]: https://img.shields.io/travis/select2/select2/master.svg
[travis-ci-status]: https://travis-ci.org/select2/select2

[angularjs]: https://angularjs.org/
[bootstrap3]: https://getbootstrap.com/
Expand Down

0 comments on commit 233424d

Please sign in to comment.