1
0

Pipelines fixes & community documentation (#2)

* - Removed scenario test overrides

* Fixed localization check issue

* Added CI/CD configs

* Updated README

* Added yarn install to CI/CD configs

* Update ci.yml

* Updated CI config to attach built bundle to release

* Added templates and documents to comply with GitHub Community Standards

* Updated CI.yml
This commit is contained in:
2022-05-20 15:44:43 +03:00
committed by GitHub
parent 08426b9a15
commit 5f34431b5a
7 changed files with 205 additions and 2 deletions
+13 -2
View File
@@ -17,6 +17,7 @@ jobs:
with:
node-version: '16.x'
cache: 'yarn'
- run: yarn install
- run: yarn build
- name: 'Drop artifacts'
@@ -34,5 +35,15 @@ jobs:
scp_source: 'build/*'
scp_target: '/var/www/demo.ezlog.app/'
- name: GitHub Release from Tag
uses: eloquent/github-release-action@v1
- name: Pack bundle
uses: TheDoctor0/zip-release@0.4.1
with:
filename: ./EasyLogonDemo-Bundle.zip
path: 'build'
- name: Create GitHub Release
uses: ncipollo/release-action@v1
with:
tag: '${{ github.run_id }}/${{ github.run_number }}'
artifacts: 'EasyLogonDemo-Bundle.zip'
token: ${{ secrets.GH_TOKEN }}