✅ feat: add Digital Ocean form handling and validation tests for phys… #48
This file contains 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: "Run check: Build image" | |
on: | |
push: | |
branches-ignore: | |
- main | |
workflow_dispatch: | |
permissions: | |
packages: write | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Inject slug/short variables | |
uses: rlespinasse/github-slug-action@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build container | |
uses: docker/build-push-action@v6 | |
with: | |
push: false | |
tags: ${{ github.repository }}:${{ env.GITHUB_SHA_SHORT }} |