-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #482 from sebgroup/develop
cut release
- Loading branch information
Showing
577 changed files
with
23,096 additions
and
11,767 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: CI | ||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Get branch name | ||
shell: bash | ||
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})" | ||
id: branch | ||
|
||
- name: Add token for Font Awesome registry access | ||
env: | ||
FA_TOKEN: ${{ secrets.FA_TOKEN }} | ||
run: npm run add-fa-config | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Build library | ||
run: npm run build | ||
|
||
- name: Build documentation and demo site | ||
run: npm run build:demo | ||
|
||
#- uses: codfish/semantic-release-action@master | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
- name: Run semantic release and publish new version to npm | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: npm run semantic-release | ||
|
||
- name: Set base href | ||
run: ./node_modules/.bin/replace '<base href=(.*?)>' '<base href="/${{ github.event.repository.name }}/${{ steps.branch.outputs.branch }}/">' dist/bootstrap/index.html | ||
|
||
# - name: Set build (run) number | ||
# run: ./node_modules/.bin/replace '##BUILD_NUMBER##' '${{ github.run_number }}' www/index.html | ||
|
||
- name: Get last release | ||
# if: steps.semantic.outputs.new-release-published !== 'true' | ||
id: version | ||
uses: abatilo/[email protected] | ||
with: | ||
owner: sebgroup | ||
repo: bootstrap | ||
|
||
#- name: Set version number after release | ||
# if: steps.semantic.outputs.new-release-published == 'true' | ||
# run: ./node_modules/.bin/replace '##VERSION##' 'v${{ steps.semantic.outputs.release-version }}' www/index.html | ||
|
||
#- name: Set version number | ||
# if: steps.semantic.outputs.new-release-published != 'true' | ||
# run: ./node_modules/.bin/replace '##VERSION##' '${{ steps.version.outputs.latest_tag }}' www/index.html | ||
|
||
- name: Deploy documentation to GitHub Pages | ||
uses: JamesIves/[email protected] | ||
with: | ||
ACCESS_TOKEN: ${{ secrets.GH_TOKEN }} | ||
BRANCH: gh-pages # The branch the action should deploy to. | ||
FOLDER: dist/bootstrap # The folder the action should deploy. | ||
TARGET_FOLDER: ${{ steps.branch.outputs.branch }} # The folder the action should deploy to. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"printWidth": 120, | ||
"singleQuote": true, | ||
"useTabs": false, | ||
"tabWidth": 2, | ||
"semi": true, | ||
"bracketSpacing": true | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.