1
0

build.yml 336 B

12345678910111213141516171819
  1. name: build
  2. on:
  3. pull_request:
  4. branches:
  5. - master
  6. workflow_dispatch:
  7. jobs:
  8. build:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - name: Checkout
  12. uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
  13. with:
  14. fetch-depth: '0'
  15. - name: Build the Docker image
  16. run: docker build .