Build static testing #103
Workflow file for this run
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
name: Build static testing | |
on: | |
workflow_dispatch: | |
inputs: | |
kuberta_system: | |
jobs: | |
deploy: | |
name: Build testing | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- uses: docker://quay.csssr.cloud/csssr/kuberta-init-workflow:v1 | |
- name: Download CSSSR actions | |
uses: actions/checkout@v4 | |
with: | |
repository: CSSSR/actions | |
ssh-key: ${{ secrets.DOWNLOAD_ACTIONS_SSH_KEY }} | |
path: actions | |
- uses: actions/checkout@v4 | |
with: | |
path: blog | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
registry-url: 'https://npm.pkg.github.com' | |
scope: '@csssr' | |
- name: Install dependencies | |
working-directory: blog | |
run: yarn install --frozen-lockfile | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_GITHUB_REGISTRY_TOKEN }} | |
- uses: docker://quay.csssr.cloud/csssr/github-info:v1 | |
id: gh | |
- name: Build testing | |
working-directory: blog | |
run: yarn build | |
env: | |
BLOG_HOST: https://${{ steps.gh.outputs.releaseID }}.csssr-new-blog.csssr.cloud | |
COM_HOST: https://master.com.csssr.cloud | |
- name: Import secrets | |
id: secrets | |
uses: ./actions/get-aws-s3-upload-creds/v1beta1 | |
with: | |
VAULT_JWT_KEY: ${{secrets.VAULT_JWT_KEY}} | |
- uses: ./actions/upload-static/v1beta1 | |
with: | |
project-id: csssr-new-blog | |
files: ./blog/out | |
auth: 'aws:${{steps.secrets.outputs.AWS_ACCESS_KEY_ID}}:${{steps.secrets.outputs.AWS_SECRET_ACCESS_KEY}}:${{steps.secrets.outputs.AWS_SESSION_TOKEN}}' |