From ac77eccf464648cff366222b83b5ef68d3c6d46c Mon Sep 17 00:00:00 2001 From: Gyarbij <49493993+Gyarbij@users.noreply.github.com> Date: Sun, 13 Mar 2022 13:29:02 +0100 Subject: [PATCH] Delete .github/workflows directory --- .github/workflows/deploy-nightly.yml | 38 -------------------------- .github/workflows/deploy.yml | 40 ---------------------------- .github/workflows/lint.yml | 23 ---------------- 3 files changed, 101 deletions(-) delete mode 100644 .github/workflows/deploy-nightly.yml delete mode 100644 .github/workflows/deploy.yml delete mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/deploy-nightly.yml b/.github/workflows/deploy-nightly.yml deleted file mode 100644 index efff9525..00000000 --- a/.github/workflows/deploy-nightly.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Build & Publish Docker Image to Docker Hub - -on: - workflow_dispatch: - schedule: - - cron: "0 12 * * *" - -jobs: - deploy: - name: Build & Deploy - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - ref: production - - - name: Set up QEMU - uses: docker/setup-qemu-action@v1 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - - name: Login to DockerHub - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - # Set environment variables - - run: echo RELEASE=$(cat ./src/package.json | jq -r .release) >> $GITHUB_ENV - - # Build & Publish - - name: Build & Publish Docker Image - uses: docker/build-push-action@v2 - with: - push: true - platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8 - tags: weejewel/wg-easy:nightly, weejewel/wg-easy:${{ env.RELEASE }}-nightly diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 0f2fe55d..00000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Build & Publish Docker Image to Docker Hub - -on: - workflow_dispatch: - push: - branches: - - production - - production/** - -jobs: - deploy: - name: Build & Deploy - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - ref: production - - - name: Set up QEMU - uses: docker/setup-qemu-action@v1 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - - name: Login to DockerHub - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - # Set environment variables - - run: echo RELEASE=$(cat ./src/package.json | jq -r .release) >> $GITHUB_ENV - - # Build & Publish - - name: Build & Publish Docker Image - uses: docker/build-push-action@v2 - with: - push: true - platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8 - tags: weejewel/wg-easy:latest, weejewel/wg-easy:${{ env.RELEASE }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index b2a65b9f..00000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Lint - -on: - push: - branches: - - master - - production - pull_request: - -jobs: - lint: - name: Lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: '14' - - - run: | - cd src - npm ci - npm run lint