Skip to content

Commit 99a850b

Browse files
committed
Cleanup after release
1 parent 0ef4743 commit 99a850b

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/docker.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
- 'main'
77
tags:
88
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
9+
paths-ignore:
10+
- 'docs/**'
11+
- 'README.md'
12+
- '.github/workflows/release.yml'
913

1014
jobs:
1115
docker:

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ jobs:
6565
asset_label: sqlpage for Windows
6666
asset_content_type: application/vnd.microsoft.portable-executable
6767

68+
- name: cleanup
69+
run: rm -rf ./*
70+
6871
- uses: actions/download-artifact@v1
6972
with: { name: sqlpage macos-latest, path: . }
7073
- run: chmod +x sqlpage && tar --create --file sqlpage-macos.tgz --gzip sqlpage
@@ -79,6 +82,9 @@ jobs:
7982
asset_label: sqlpage for MacOS
8083
asset_content_type: application/octet-stream
8184

85+
- name: cleanup
86+
run: rm -rf ./*
87+
8288
- uses: actions/download-artifact@v1
8389
with: { name: sqlpage ubuntu-18.04, path: . }
8490
- run: chmod +x sqlpage && tar --create --file sqlpage-linux.tgz --gzip sqlpage

0 commit comments

Comments
 (0)