Skip to content

Topic/10 create the artifactory when the release branch is detached #5

Topic/10 create the artifactory when the release branch is detached

Topic/10 create the artifactory when the release branch is detached #5

Workflow file for this run

name: Release
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
jobs:
create_artifact:
name: 'Create build'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Restore cached node_modules
uses: ./.github/actions/cache-prod-dependencies
- name: Build and store the artifact
uses: ./.github/actions/build-artifact