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 4e003f7 commit c590f95Copy full SHA for c590f95
.github/workflows/release.yml
@@ -22,16 +22,16 @@ jobs:
22
mkdir -p template
23
mv examples/template/* template/ || echo ok
24
mv examples/template/.gitignore template/ || echo ok
25
- cp core.sh template/.
26
- cp start.sh template/.
+ cp -f core.sh template/.
+ cp -f start.sh template/.
27
zip -r template.zip template/*
28
29
# same thing for tailwind template
30
mkdir -p tailwind
31
mv examples/tailwind/* tailwind/ || echo ok
32
mv examples/tailwind/.gitignore tailwind/ || echo ok
33
- cp core.sh tailwind/.
34
- cp start.sh tailwind/.
+ cp -f core.sh tailwind/.
+ cp -f start.sh tailwind/.
35
zip -r template-tailwind.zip tailwind/*
36
- uses: ncipollo/release-action@v1
37
with:
0 commit comments