Add test and coverage badges to README #130
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and Push Multi-Platform Docker Image | |
| on: | |
| push: | |
| branches: | |
| - master # Trigger on pushes to the master branch | |
| paths-ignore: | |
| - 'build.txt' # Exclude build.txt from triggering the workflow | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4.1.7 | |
| - name: Docker Setup QEMU | |
| uses: docker/setup-qemu-action@v3.2.0 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3.6.1 | |
| - name: Log in to Docker Hub | |
| run: echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin | |
| - name: Increment build number | |
| id: build_number | |
| run: | | |
| BUILD_NUMBER=$(cat build.txt) | |
| BUILD_NUMBER=$((BUILD_NUMBER + 1)) | |
| echo $BUILD_NUMBER > build.txt | |
| echo "number=$BUILD_NUMBER" >> $GITHUB_OUTPUT | |
| - name: Build and push multi-platform Docker image | |
| run: | | |
| docker buildx build --platform linux/amd64,linux/arm64 --push \ | |
| -t ${{ secrets.DOCKERHUB_USERNAME }}/slackonos:latest \ | |
| -t ${{ secrets.DOCKERHUB_USERNAME }}/slackonos:build-${{ steps.build_number.outputs.number }} . | |
| - name: Verify the platforms | |
| run: docker buildx inspect --bootstrap | |
| - name: Commit and push updated build.txt | |
| run: | | |
| git config --local user.name "github-actions[bot]" | |
| git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
| git add build.txt | |
| git commit -m "Build ${{ steps.build_number.outputs.number }}" | |
| git push |