Skip to content

Commit

Permalink
try building docker in action
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoskal committed Oct 28, 2024
1 parent 35e6e09 commit dd8dcbb
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Docker image

on:
push:
branches:
- 'main'
tags:
- 'v*' # version tags

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
submodules: true

- run: df -h
- run: sudo rm -rf /usr/share/dotnet && df -h
- run: sudo rm -rf /usr/local/lib/android && df -h
- run: sudo rm -rf /opt/ghc && df -h
- run: sudo rm -rf /opt/hostedtoolcache/CodeQL && df -h
# - run: sudo docker image prune --all --force && df -h

- run: ./docker/build.sh

0 comments on commit dd8dcbb

Please sign in to comment.