diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml deleted file mode 100644 index 6d010359..00000000 --- a/.github/workflows/debug.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Debug -on: - push: - branches: [debug] - -jobs: - test: - runs-on: macos-latest - name: Run something on mac - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Print uname - run: uname -a - - - name: Update bash - run: brew install bash - - - name: Setup tmate session - uses: mxschmitt/action-tmate@v3 diff --git a/.github/workflows/docker.yml b/.github/workflows/docker-edge.yml similarity index 100% rename from .github/workflows/docker.yml rename to .github/workflows/docker-edge.yml diff --git a/.github/workflows/docker-latest.yml b/.github/workflows/docker-latest.yml new file mode 100644 index 00000000..fb0c823d --- /dev/null +++ b/.github/workflows/docker-latest.yml @@ -0,0 +1,28 @@ +name: Docker build (version + latest) +on: + push: { tags: 'v[0-9]+.[0-9]+.[0-9]+' } + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Extract tag + run: echo "TAG=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: true + tags: dannyben/bashly,dannyben/bashly:${{ env.TAG }}