I made an online Github Actions upgrader!
TL;DR: gaup.deknijf.com Github Actions is absolutely great. It’s fast, clean, clear, and I’ve yet to encounter a task I can’t accomplish. The main advantage of Github Actions over something like BitBucket Pipelines is the sheer number of modules (called “actions”) that you can just use. Need a docker image built? - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1.6.0 - name: Login to GCR uses: docker/login-action@v1.12.0 with: registry: eu.gcr.io username: _json_key password: ${{ secrets.GOOGLE_SA_KEY }} - name: Build and push run image uses: docker/build-push-action@v2.8.0 with: push: true tags: | eu.gcr.io/<project>/image:${{ github.run_number }} eu.gcr.io/<project>/image:latest cache-from: eu.gcr.io/<project>/image:latest cache-to: type=inline Need some Terraform deployed? ...