We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d425e7 commit b311cc4Copy full SHA for b311cc4
.github/workflows/release-action.yml
@@ -6,7 +6,7 @@ name: Create Release
6
on:
7
push:
8
branches: [ "main" ]
9
- paths: [ ".devcontainer/**", "Dockerfile" ]
+ paths: [ ".devcontainer/**" ]
10
workflow_dispatch:
11
12
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
@@ -26,7 +26,7 @@ jobs:
26
- name: Run tarball compression+
27
# Copy file paths from `on.push.paths`
28
run: |
29
- echo '[ ".devcontainer/**", "Dockerfile" ]' | tar -czvf ./artifact.tar.gz $(jq -r 'join(" ")')
+ echo '[ ".devcontainer/**" ]' | tar -czvf ./artifact.tar.gz $(jq -r 'join(" ")')
30
31
- name: Set properties
32
id: properties
0 commit comments