From 7ba286b7391cde0565a980c9ed2060bdb64bc9c6 Mon Sep 17 00:00:00 2001 From: uazo <29201891+uazo@users.noreply.github.com> Date: Fri, 2 Jul 2021 14:05:28 +0200 Subject: [PATCH] Delete github/.workflows directory --- github/.workflows/build-images.yaml | 60 ----------------------------- 1 file changed, 60 deletions(-) delete mode 100644 github/.workflows/build-images.yaml diff --git a/github/.workflows/build-images.yaml b/github/.workflows/build-images.yaml deleted file mode 100644 index cc8d86d..0000000 --- a/github/.workflows/build-images.yaml +++ /dev/null @@ -1,60 +0,0 @@ -permissions: - actions: none - checks: none - contents: none - deployments: none - issues: none - packages: none - pull-requests: none - repository-projects: none - security-events: none - statuses: none - -on: - push: - tags: - - 'v*' - -name: Builds and pushes tagged image to DockerHub -jobs: - generate_build_deps: - name: Generate Build Deps - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: docker/setup-buildx-action@v1 - - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Find VERSION - run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV - - name: Docker Build and Push - uses: docker/build-push-action@v2 - with: - context: ./images/build-deps - push: true - build-args: VERSION=$VERSION - tags: | - uazo/build-deps:${{ env.VERSION }} - - generate_chromium_src: - name: Generate Chromium Sources - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: docker/setup-buildx-action@v1 - - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Find VERSION - run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV - - name: Docker Build and Push - uses: docker/build-push-action@v2 - with: - context: ./images/chr-source - push: true - build-args: VERSION=$VERSION - tags: | - uazo/chromium:${{ env.VERSION }}