Skip to content

Commit

Permalink
fix(docs): corrects base path (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
jshor committed Sep 16, 2020
1 parent 986af93 commit d845a5e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 14 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ on:
types: [created]

env:
GIT_USER: 'github-actions'
GIT_EMAIL: '41898282+github-actions[bot]@users.noreply.github.com'
GIT_USER: 'jshor' # 'github-actions'
GIT_EMAIL: '[email protected]' # '41898282+github-actions[bot]@users.noreply.github.com'
ARTIFACT_DIR: 'build'

jobs:
Expand Down Expand Up @@ -48,6 +48,7 @@ jobs:
git-user-email: ${{ env.GIT_EMAIL }}
tag-prefix: 'v'
release-count: '0'
skip-on-empty: false

deploy:
needs: build
Expand All @@ -64,15 +65,15 @@ jobs:
name: ${{ env.ARTIFACT_DIR }}
path: ${{ env.ARTIFACT_DIR }}
- name: Create CNAME Record
run: echo "test-repo.github.io" > ${{ env.ARTIFACT_DIR }}/CNAME
run: echo "datebook.dev" > ${{ env.ARTIFACT_DIR }}/docs/CNAME
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_CONFIG_NAME: ${{ env.GIT_USER }}
GIT_CONFIG_EMAIL: ${{ env.GIT_EMAIL }}
BRANCH: gh-pages
FOLDER: ${{ env.ARTIFACT_DIR }}
FOLDER: ${{ env.ARTIFACT_DIR }}/docs
CLEAN: true

publish-npm:
Expand Down
14 changes: 5 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,34 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [4.1.6](https://github.com/jshor/datebook/compare/v4.1.3...v4.1.6) (2020-09-14)
# [4.1.6](https://github.com/jshor/datebook/compare/v4.1.3...v4.1.6) (2020-09-14)


### Bug Fixes

* **edge:** updates incorrect Safari check ([#94](https://github.com/jshor/datebook/issues/94)) ([#96](https://github.com/jshor/datebook/issues/96)) ([901f87d](https://github.com/jshor/datebook/commit/901f87d341fa0fcf9f3826e1693f1e425eaec60b))
* don't create blob until we need to ([#101](https://github.com/jshor/datebook/issues/101)) ([c6e3ee6](https://github.com/jshor/datebook/commit/c6e3ee6413493b142dde7fce9c9584fd5ac5b570))

### [4.1.5](https://github.com/jshor/datebook/compare/v4.1.3...v4.1.4) (2020-06-29)
# [4.1.5](https://github.com/jshor/datebook/compare/v4.1.3...v4.1.4) (2020-06-29)


### Bug Fixes

* **edge:** updates incorrect Safari check ([#94](https://github.com/jshor/datebook/issues/94)) ([#96](https://github.com/jshor/datebook/issues/96)) ([901f87d](https://github.com/jshor/datebook/commit/901f87d341fa0fcf9f3826e1693f1e425eaec60b))

### [4.1.3](https://github.com/jshor/datebook/compare/v4.1.2...v4.1.3) (2020-06-12)
# [4.1.3](https://github.com/jshor/datebook/compare/v4.1.2...v4.1.3) (2020-06-12)


### Bug Fixes

* **ie:** fixes for IE11 ([#91](https://github.com/jshor/datebook/issues/91)) ([#92](https://github.com/jshor/datebook/issues/92)) ([c13cf49](https://github.com/jshor/datebook/commit/c13cf49610e9bf10793154d05ec23d694a658ea8))
* **readme:** adds link to generator [ci skip] ([388b87f](https://github.com/jshor/datebook/commit/388b87f9f0c0150555083d361346bc08075f3613))

### [4.1.2](https://github.com/jshor/datebook/compare/v4.1.1...v4.1.2) (2020-05-13)
# [4.1.2](https://github.com/jshor/datebook/compare/v4.1.1...v4.1.2) (2020-05-13)


### Bug Fixes

* **timestamps:** fixes calendar timestamp formats ([#84](https://github.com/jshor/datebook/issues/84)) ([#85](https://github.com/jshor/datebook/issues/85)) ([0e41dd7](https://github.com/jshor/datebook/commit/0e41dd7369835bfc341ae939ec43e821acfdc550))

### [4.1.1](https://github.com/jshor/datebook/compare/v4.1.0...v4.1.1) (2020-04-29)
# [4.1.1](https://github.com/jshor/datebook/compare/v4.1.0...v4.1.1) (2020-04-29)


### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datebook",
"version": "4.1.5",
"version": "4.1.6",
"description": "Generates URLs and downloads ICS files for adding events to popular calendar apps.",
"scripts": {
"build": "webpack",
Expand Down

0 comments on commit d845a5e

Please sign in to comment.