chore(setup): fix publishing workflow
This commit is contained in:
127
.github/workflows/publish.yml
vendored
127
.github/workflows/publish.yml
vendored
@@ -5,62 +5,101 @@ on:
|
|||||||
branches: [ main ]
|
branches: [ main ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Build:
|
build:
|
||||||
if: "${{ contains(github.event.head_commit.message, 'chore(release): publish') == false }}"
|
if: "${{ contains(github.event.head_commit.message, 'chore(release): publish') == false }}"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
|
||||||
token: ${{ secrets.CI_PAT_TOKEN }}
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Set up Node
|
|
||||||
uses: actions/setup-node@v3
|
|
||||||
with:
|
|
||||||
registry-url: 'https://registry.npmjs.org'
|
|
||||||
node-version-file: '.nvmrc'
|
|
||||||
|
|
||||||
- name: Setup git config
|
|
||||||
run: |
|
|
||||||
git config --global user.name "standardci"
|
|
||||||
git config --global user.email "ci@standardnotes.com"
|
|
||||||
- name: Import GPG key
|
|
||||||
uses: crazy-max/ghaction-import-gpg@v4
|
|
||||||
with:
|
|
||||||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
|
||||||
passphrase: ${{ secrets.PASSPHRASE }}
|
|
||||||
git_user_signingkey: true
|
|
||||||
git_commit_gpgsign: true
|
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --immutable
|
run: yarn install --immutable
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: yarn build:all
|
run: yarn build:all
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: built-packages
|
||||||
|
path: packages
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: node_modules
|
||||||
|
path: node_modules
|
||||||
|
|
||||||
|
lint:
|
||||||
|
needs: build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: built-packages
|
||||||
|
path: packages
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: node_modules
|
||||||
|
path: node_modules
|
||||||
- name: ESLint
|
- name: ESLint
|
||||||
run: yarn lint
|
run: yarn lint
|
||||||
|
|
||||||
|
android:
|
||||||
|
needs: build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: built-packages
|
||||||
|
path: packages
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: node_modules
|
||||||
|
path: node_modules
|
||||||
- name: Build Android
|
- name: Build Android
|
||||||
run: yarn android:bundle
|
run: yarn android:bundle
|
||||||
|
|
||||||
|
test:
|
||||||
|
needs: build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: built-packages
|
||||||
|
path: packages
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: node_modules
|
||||||
|
path: node_modules
|
||||||
- name: Test
|
- name: Test
|
||||||
run: yarn test
|
run: yarn test
|
||||||
|
|
||||||
|
e2e:
|
||||||
|
needs: test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: built-packages
|
||||||
|
path: packages
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: node_modules
|
||||||
|
path: node_modules
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
if: "${{ contains(github.event.head_commit.message, 'skip e2e') == false }}"
|
if: "${{ contains(github.event.head_commit.message, 'skip e2e') == false }}"
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: Publish SNJS Docker image for E2E testing
|
- name: Publish SNJS Docker image for E2E testing
|
||||||
if: "${{ contains(github.event.head_commit.message, 'skip e2e') == false }}"
|
if: "${{ contains(github.event.head_commit.message, 'skip e2e') == false }}"
|
||||||
run: |
|
run: |
|
||||||
yarn docker build @standardnotes/snjs -t standardnotes/snjs:${{ github.sha }}
|
yarn docker build @standardnotes/snjs -t standardnotes/snjs:${{ github.sha }}
|
||||||
docker push standardnotes/snjs:${{ github.sha }}
|
docker push standardnotes/snjs:${{ github.sha }}
|
||||||
|
|
||||||
- name: Run E2E test suite
|
- name: Run E2E test suite
|
||||||
if: "${{ contains(github.event.head_commit.message, 'skip e2e') == false }}"
|
if: "${{ contains(github.event.head_commit.message, 'skip e2e') == false }}"
|
||||||
uses: convictional/trigger-workflow-and-wait@v1.6.1
|
uses: convictional/trigger-workflow-and-wait@v1.6.1
|
||||||
@@ -75,16 +114,48 @@ jobs:
|
|||||||
trigger_workflow: true
|
trigger_workflow: true
|
||||||
wait_workflow: true
|
wait_workflow: true
|
||||||
|
|
||||||
|
publish:
|
||||||
|
needs: e2e
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.CI_PAT_TOKEN }}
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: built-packages
|
||||||
|
path: packages
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: node_modules
|
||||||
|
path: node_modules
|
||||||
|
- name: Set up Node
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
registry-url: 'https://registry.npmjs.org'
|
||||||
|
node-version-file: '.nvmrc'
|
||||||
|
- name: Setup git config
|
||||||
|
run: |
|
||||||
|
git config --global user.name "standardci"
|
||||||
|
git config --global user.email "ci@standardnotes.com"
|
||||||
|
- name: Import GPG key
|
||||||
|
uses: crazy-max/ghaction-import-gpg@v4
|
||||||
|
with:
|
||||||
|
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||||
|
passphrase: ${{ secrets.PASSPHRASE }}
|
||||||
|
git_user_signingkey: true
|
||||||
|
git_commit_gpgsign: true
|
||||||
- name: Bump version
|
- name: Bump version
|
||||||
run: yarn release:prod
|
run: yarn release:prod
|
||||||
|
|
||||||
- name: Publish
|
- name: Publish
|
||||||
run: yarn publish:prod
|
run: yarn publish:prod
|
||||||
env:
|
env:
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.CI_NPM_TOKEN }}
|
NODE_AUTH_TOKEN: ${{ secrets.CI_NPM_TOKEN }}
|
||||||
|
|
||||||
- name: Publish SNJS Docker image as stable
|
- name: Publish SNJS Docker image as stable
|
||||||
if: "${{ contains(github.event.head_commit.message, 'skip e2e') == false }}"
|
if: "${{ contains(github.event.head_commit.message, 'skip e2e') == false }}"
|
||||||
run: |
|
run: |
|
||||||
|
yarn docker build @standardnotes/snjs -t standardnotes/snjs:${{ github.sha }}
|
||||||
docker tag standardnotes/snjs:${{ github.sha }} standardnotes/snjs:latest
|
docker tag standardnotes/snjs:${{ github.sha }} standardnotes/snjs:latest
|
||||||
docker push standardnotes/snjs:latest
|
docker push standardnotes/snjs:latest
|
||||||
|
|||||||
Reference in New Issue
Block a user