Move API.getPixallVisitorId to API.utils.getPixallVisitorId #54
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
name: Build and Deploy | |
on: | |
push: | |
branches: [ 'master' ] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
env: | |
external-doc-build: external_build | |
internal-doc-build: internal_build | |
zip-doc-build: documents.zip | |
steps: | |
- name: Accessing github project files | |
uses: actions/checkout@v2 | |
- name: Build external and internal document | |
## Use our build docker file | |
## Which sets up the ruby env to build the slate template | |
uses: ./ | |
env: | |
EXTERNAL_DOC_BUILD: ${{ env.external-doc-build }} | |
INTERNAL_DOC_BUILD: ${{ env.internal-doc-build }} | |
ZIP_DOC_BUILD: ${{ env.zip-doc-build }} | |
- name: Get changes from CHANGELOG.md | |
id: changelog_reader | |
uses: mindsers/changelog-reader-action@v2 | |
with: | |
version: Unreleased | |
- name: Generate release timestamp | |
id: tag | |
run: echo "::set-output name=date::$(date +'%Y-%m-%dT%H.%M.%S')" | |
- name: Push a release tag | |
id: push_tag | |
uses: mathieudutour/[email protected] | |
with: | |
github_token: ${{ secrets.GH_TOKEN }} | |
custom_tag: ${{ steps.tag.outputs.date }} | |
- name: Create Release | |
id: create_release | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
with: | |
tag_name: v${{ steps.tag.outputs.date }} | |
release_name: ${{ steps.tag.outputs.date }} | |
body: ${{ steps.changelog_reader.outputs.changes }} | |
prerelease: false | |
draft: false | |
- name: Upload Release Asset | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./${{ env.zip-doc-build }} | |
asset_name: ${{ env.zip-doc-build }} | |
asset_content_type: application/zip | |
- name: Update changelog | |
uses: thomaseizinger/keep-a-changelog-new-release@v1 | |
with: | |
version: v${{ steps.tag.outputs.date }} | |
- name: Commit changelog | |
run: | | |
git config user.name "GitHub actions" | |
git config user.email [email protected] | |
git add CHANGELOG.md | |
git commit --message "Updating Changelog" | |
echo "::set-output name=commit::$(git rev-parse HEAD)" | |
git push -f origin master | |
- name: Deploy external documentation | |
uses: peaceiris/[email protected] | |
with: | |
github_token: ${{ secrets.GH_TOKEN }} | |
publish_dir: ${{ env.external-doc-build }} | |
keep_files: false | |
- name: Deploy internal documentation | |
uses: peaceiris/[email protected] | |
with: | |
github_token: ${{ secrets.GH_TOKEN }} | |
destination_dir: internal | |
publish_dir: ${{ env.internal-doc-build }} | |
keep_files: false |