From 417fbb3e8438b8c0b9f65b9269bbf3297f2a71a3 Mon Sep 17 00:00:00 2001 From: ShahanaFarooqui Date: Wed, 6 Nov 2024 21:22:13 -0800 Subject: [PATCH] Artifact script fix (#1464) * Update action versions for ci workflow * Add zip and remove unnecessary triggers --- .github/workflows/ci.yml | 44 ++++++++++++++++++++++------------------ 1 file changed, 24 insertions(+), 20 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e63809aa7..fcb47c5d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,31 +2,29 @@ name: Artifact on: push: - branches: [ master, 'Release-*' ] tags: [ 'v*' ] release: types: [released] - # Triggers the workflow only when merging pull request to the branches. - pull_request: - types: [closed] - branches: [ master, 'Release-*' ] - # Allows you to run this workflow manually from the Actions tab workflow_dispatch: - + inputs: + version: + description: 'Release version' + required: true + jobs: build: runs-on: ubuntu-latest steps: - name: Checkout source code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: 18.x - name: Cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-npm-packages with: path: node_modules @@ -37,7 +35,7 @@ jobs: run: npm ci --legacy-peer-deps - name: Cache build frontend - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-build-frontend with: path: frontend @@ -47,7 +45,7 @@ jobs: run: npm run buildfrontend - name: Cache build backend - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-build-backend with: path: backend @@ -61,26 +59,32 @@ jobs: needs: build steps: - name: Checkout source code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Cache build frontend - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-build-frontend with: path: frontend key: ${{ runner.os }}-frontend-${{ github.sha }} - name: Cache build backend - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-build-backend with: path: backend key: ${{ runner.os }}-backend-${{ github.sha }} - name: Compress files - run: tar -czf /tmp/rtlbuild.tar.gz frontend backend rtl.js package.json package-lock.json - - - uses: actions/upload-artifact@v2 + env: + VERSION: "${{ github.event.release.tag_name || github.event.inputs.version || '' }}" + run: | + tar -czf /tmp/rtl-build-$VERSION.tar.gz frontend backend rtl.js package.json package-lock.json + zip -r /tmp/rtl-build-$VERSION.zip frontend backend rtl.js package.json package-lock.json + + - uses: actions/upload-artifact@v3 with: - name: rtl-build-${{ github.event.release.tag_name }} - path: /tmp/rtlbuild.tar.gz + name: rtl-build-${{ github.event.release.tag_name || github.event.inputs.version || '' }} + path: | + /tmp/rtl-build-${{ github.event.release.tag_name || github.event.inputs.version || '' }}.tar.gz + /tmp/rtl-build-${{ github.event.release.tag_name || github.event.inputs.version || '' }}.zip