Skip to content

Commit

Permalink
daily だけでなく通常のビルドにも Disk Cleanup を入れる
Browse files Browse the repository at this point in the history
  • Loading branch information
torikizi committed Oct 3, 2023
1 parent 2a30e26 commit 9623cc9
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: build-workflow
on:
push:
paths-ignore:
- 'doc/**'
- 'html/**'
- '**.md'
- 'THANKS'
- 'LICENSE'
- 'NOTICE'
- "doc/**"
- "html/**"
- "**.md"
- "THANKS"
- "LICENSE"
- "NOTICE"

jobs:
build-windows:
Expand Down Expand Up @@ -138,6 +138,12 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Disk Cleanup
run: |
set -x
docker system df
docker rmi `docker images -q -a`
docker system df
- name: Get Versions
run: |
source VERSION
Expand Down Expand Up @@ -213,8 +219,7 @@ jobs:
- name: Release
uses: softprops/action-gh-release@v1
with:
files:
${{ steps.env.outputs.package_paths }}
files: ${{ steps.env.outputs.package_paths }}
notification:
name: Slack Notification
runs-on: ubuntu-latest
Expand Down

0 comments on commit 9623cc9

Please sign in to comment.