-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
1 parent
27a24f6
commit 52b8659
Showing
1 changed file
with
70 additions
and
82 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 |
---|---|---|
@@ -1,82 +1,70 @@ | ||
name: Automated | ||
"on": | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
about: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: setup nodejs | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- name: Jaid/action-sync-node-meta | ||
uses: jaid/[email protected] | ||
with: | ||
direction: overwrite-github | ||
githubToken: "${{ secrets.GITHUB }}" | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: setup nodejs | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14 | ||
- name: Semantic Release | ||
uses: cycjimmy/semantic-release-action@v3 | ||
id: semantic | ||
with: | ||
extra_plugins: | | ||
@semantic-release/changelog | ||
@semantic-release/git | ||
@semantic-release/github | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB }}" | ||
NPM_TOKEN: "${{ secrets.NPM_TOKEN }}" | ||
outputs: | ||
new_release_published: "${{ steps.semantic.outputs.new_release_published }}" | ||
new_release_version: "${{ steps.semantic.outputs.new_release_version }}" | ||
upload: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Get Environment Variables | ||
run: | | ||
echo "organization_id=${{ secrets.COCREATE_ORGANIZATION_ID }}" >> $GITHUB_ENV | ||
echo "key=${{ secrets.COCREATE_KEY }}" >> $GITHUB_ENV | ||
echo "host=${{ secrets.COCREATE_HOST }}" >> $GITHUB_ENV | ||
- name: Install @cocreate/cli | ||
run: npm install -g @cocreate/cli | ||
|
||
- name: CoCreate CLI Upload | ||
run: coc upload | ||
|
||
# docs: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v3 | ||
# - name: setup nodejs | ||
# uses: actions/setup-node@v3 | ||
# with: | ||
# node-version: 16 | ||
# - name: update documentation | ||
# uses: CoCreate-app/CoCreate-docs@master | ||
# env: | ||
# organization_id: ${{ secrets.COCREATE_ORGANIZATION_ID }} | ||
# key: ${{ secrets.COCREATE_KEY }} | ||
# host: ${{ secrets.COCREATE_HOST }} | ||
name: Automated Workflow | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
about: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- name: Jaid/action-sync-node-meta | ||
uses: jaid/[email protected] | ||
with: | ||
direction: overwrite-github | ||
githubToken: "${{ secrets.GITHUB }}" | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14 | ||
- name: Semantic Release | ||
uses: cycjimmy/semantic-release-action@v3 | ||
id: semantic | ||
with: | ||
extra_plugins: | | ||
@semantic-release/changelog | ||
@semantic-release/git | ||
@semantic-release/github | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB }}" | ||
NPM_TOKEN: "${{ secrets.NPM_TOKEN }}" | ||
outputs: | ||
new_release_published: "${{ steps.semantic.outputs.new_release_published }}" | ||
new_release_version: "${{ steps.semantic.outputs.new_release_version }}" | ||
upload: | ||
runs-on: ubuntu-latest | ||
needs: release | ||
if: needs.release.outputs.new_release_published == 'true' | ||
env: | ||
VERSION: "${{ needs.release.outputs.new_release_version }}" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- name: Set npm registry auth | ||
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | ||
- name: Install dependencies | ||
run: yarn install | ||
- name: Build | ||
run: yarn build | ||
- name: Set Environment Variables | ||
run: | | ||
echo "organization_id=${{ secrets.COCREATE_ORGANIZATION_ID }}" >> $GITHUB_ENV | ||
echo "key=${{ secrets.COCREATE_KEY }}" >> $GITHUB_ENV | ||
echo "host=${{ secrets.COCREATE_HOST }}" >> $GITHUB_ENV | ||
- name: CoCreate Upload | ||
run: coc upload | ||
|