From 5c507a6d6f6eebccb38676b5c8f178f50c9f3f00 Mon Sep 17 00:00:00 2001 From: bartoval Date: Mon, 14 Oct 2024 22:07:26 +0200 Subject: [PATCH] refactor(General): :recycle: Remove build-dev --- .github/workflows/dev-build.yml | 65 --------------------------------- 1 file changed, 65 deletions(-) delete mode 100644 .github/workflows/dev-build.yml diff --git a/.github/workflows/dev-build.yml b/.github/workflows/dev-build.yml deleted file mode 100644 index db5eb1430..000000000 --- a/.github/workflows/dev-build.yml +++ /dev/null @@ -1,65 +0,0 @@ -name: build-dev -on: - push: - branches: - - main - - v2 -jobs: - build-and-release: - name: Build and release skupper-console (Dev) - runs-on: ubuntu-latest - - steps: - - name: Checkout 🛎️ - uses: actions/checkout@v3 - - - name: Set up Node.js ⚙️ - uses: actions/setup-node@v3 - with: - node-version: '18' - cache: 'yarn' - cache-dependency-path: yarn.lock - cache-path: ~/.cache/yarn - - - name: Set env 📋 - run: echo "RELEASE_VERSION=dev-build" >> $GITHUB_ENV - - - name: Install 📦 - run: | - yarn install --frozen-lockfile - - - name: Build 🚧 - run: | - yarn build --mode development - env: - CI: false - - - name: Package 📦 - run: | - cd build/ && tar -zcvf ../console-dev.tgz --exclude='./data' . - - - name: Create Release ✅ - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: "dev-build" # Using a proper tag name here - release_name: "Dev build" - body: | - Skupper-console (Dev) build is available as a tar ball: - - console-dev.tgz - Issues fixed in this release - - https://github.com/skupperproject/skupper-console/issues?q=is:issue+milestone:dev - draft: false # Set to `false` to make the release public - - - name: Upload Release Asset ⬆️ - id: upload-release-asset - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./console-dev.tgz - asset_name: console-dev.tgz - asset_content_type: application/tar+gzip