Skip to content

Deploy to prod (GitHub Pages) #275

Deploy to prod (GitHub Pages)

Deploy to prod (GitHub Pages) #275

Workflow file for this run

# Copyright 2024 EPAM Systems
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Deploy to prod (GitHub Pages)
env:
CONTACT_US_URL: https://testio.my.salesforce-sites.com/leadcapture/services/apexrest/leadservice
DOCUMENTATION_URL: //reportportal.io/docs
GTM_ID: GTM-MK7ZHTL
BUILD_DIR : public/
CONTENTFUL_ENV_ID : master
CONTENTFUL_HOST : cdn.contentful.com
GATSBY_MAILCHIMP_LIST_ID: ca6d0eec5b
on:
push:
branches:
- master
paths-ignore:
- README.md
schedule:
- cron: "0 21 24 11 *"
- cron: "0 21 14 1 *"
- cron: "30 0 * * *"
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install of node dependencies
run: npm install
- name: create env file
run: |
touch .env.production
echo CONTENTFUL_ACCESS_TOKEN=${{ secrets.CONTENTFUL_ACCESS_TOKEN }} >> .env.production
echo CONTENTFUL_SPACE_ID=${{ secrets.CONTENTFUL_SPACE_ID }} >> .env.production
echo CONTENTFUL_ENV_ID=${{ env.CONTENTFUL_ENV_ID }} >> .env.production
echo CONTENTFUL_HOST=${{ env.CONTENTFUL_HOST }} >> .env.production
echo GTM_ID=${{ env.GTM_ID }} >> .env.production
echo CONTACT_US_URL=${{ env.CONTACT_US_URL }} >> .env.production
echo DOCUMENTATION_URL=${{ env.DOCUMENTATION_URL }} >> .env.production
echo GATSBY_MAILCHIMP_LIST_ID=${{ env.GATSBY_MAILCHIMP_LIST_ID }} >> .env.production
- name: Build the source code
run: npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./${{ env.BUILD_DIR }}
publish_branch: gh-pages
commit_message: ${{ github.event.head_commit.message }}