-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
45 additions
and
62 deletions.
There are no files selected for viewing
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,43 @@ | ||
name: Alpha | ||
on: | ||
workflow_run: | ||
workflows: [build] | ||
branches: [dev] | ||
types: [completed] | ||
jobs: | ||
doc: | ||
name: Github Pages Deploy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 12.x | ||
registry-url: https://registry.npmjs.org | ||
- run: npm ci | ||
- run: npm run doc | ||
- name: Deploy Docs | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
folder: ts-docs | ||
alpha: | ||
name: Alpha NPM Deploy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 12.x | ||
registry-url: https://registry.npmjs.org | ||
- run: npm ci | ||
- run: npm pack | ||
- id: version | ||
run: echo "version=$(npm run version --silent)" >> $GITHUB_ENV | ||
- id: newVersion | ||
run: echo "newVersion=${{ env.version }}-alpha-${GITHUB_SHA::7}" >> $GITHUB_ENV | ||
- run: echo "Deploying version ${{ env.newVersion }}" | ||
- run: npm version "${{ env.newVersion }}" --commit-hooks false --git-tag-version false | ||
- run: npm publish --tag alpha | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
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 |
---|---|---|
|
@@ -32,64 +32,3 @@ jobs: | |
registry-url: https://registry.npmjs.org | ||
- run: npm ci | ||
- run: npm run lint | ||
doc: | ||
name: Github Pages Deploy | ||
runs-on: ubuntu-latest | ||
if: contains(github.base_ref, 'dev') | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 12.x | ||
registry-url: https://registry.npmjs.org | ||
- run: npm ci | ||
- run: npm run doc | ||
- name: Deploy Docs | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
folder: ts-docs | ||
alpha: | ||
needs: build | ||
name: Alpha NPM Deploy | ||
runs-on: ubuntu-latest | ||
if: contains(github.base_ref, 'dev') | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 12.x | ||
registry-url: https://registry.npmjs.org | ||
- run: npm ci | ||
- run: npm pack | ||
- id: version | ||
run: echo "version=$(npm run version --silent)" >> $GITHUB_ENV | ||
- id: newVersion | ||
run: echo "newVersion=${{ env.version }}-alpha-${GITHUB_SHA::7}" >> $GITHUB_ENV | ||
- run: echo "Deploying version ${{ env.newVersion }}" | ||
- run: npm version "${{ env.newVersion }}" --commit-hooks false --git-tag-version false | ||
- run: npm publish --tag alpha | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - run: sudo rm /usr/local/bin/docker-compose | ||
# - run: curl -L https://github.com/docker/compose/releases/download/${env.DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose | ||
# - run: chmod +x docker-compose | ||
# - sudo mv docker-compose /usr/local/bin | ||
# - name: Build symbol.yml | ||
# run: python3 -m catparser --schema symbol/all.cats --include symbol --output dist/symbol.yml | ||
# - name: Build nem.yml | ||
# run: python3 -m catparser --schema nem/all.cats --include nem --output dist/nem.yml | ||
# - run: ls -la dist | ||
# - uses: 'marvinpinto/action-automatic-releases@latest' | ||
# name: Publish Pre Release | ||
# if: github.ref == 'refs/heads/main' | ||
# with: | ||
# repo_token: '${{ secrets.GITHUB_TOKEN }}' | ||
# automatic_release_tag: 'alpha' | ||
# prerelease: true | ||
# title: 'Alpha Build' | ||
# files: | | ||
# dist/symbol.yml | ||
# dist/nem.yml |
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