Skip to content

Commit 07557c1

Browse files
authored
Merge pull request #12 from 10up/develop
Release 1.4.0
2 parents e2e4ee5 + 1c1eb65 commit 07557c1

File tree

4 files changed

+70
-1
lines changed

4 files changed

+70
-1
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: "\U0001F41B Bug report"
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Thank you for reporting a possible bug. Please fill in as much of the template below as you can. -->
11+
12+
**Describe the bug**
13+
<!-- A clear and concise description of what the bug is. -->
14+
15+
**Steps to Reproduce**
16+
<!-- Steps to reproduce the behavior. -->
17+
1. Go to '...'
18+
2. Click on '....'
19+
3. Scroll down to '....'
20+
4. See error
21+
22+
**Expected behavior**
23+
<!-- A clear and concise description of what you expected to happen. -->
24+
25+
**Additional context**
26+
<!-- Add any other context about the problem here. -->
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: "\U0001F680 Enhancement"
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Thank you for suggesting an idea to make things better. Please fill in as much of the template below as you can. -->
11+
12+
**Is your enhancement related to a problem? Please describe.**
13+
<!-- Please describe the problem you are trying to solve. -->
14+
15+
**Describe the solution you'd like**
16+
<!-- Please describe the desired behavior. -->
17+
18+
**Designs**
19+
<!-- If applicable, add mockups/screenshots/etc. to help explain your solution. -->
20+
21+
**Describe alternatives you've considered**
22+
<!-- Please describe alternative solutions or features you have considered. -->
23+
24+
**Additional context**
25+
<!-- Add any other context about the enhancement here. -->

.github/ISSUE_TEMPLATE/3-help.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: "❓ Need help?"
3+
about: Ask us a question, we're here to help!
4+
title: ''
5+
labels: question
6+
assignees: ''
7+
8+
---
9+
10+
<!-- If you have a question that is neither a bug report nor an enhancement, then please post it here! Please fill in as much of the template below as you can. -->
11+
12+
**Describe your question**
13+
<!-- A clear and concise description of what your question is. -->

entrypoint.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ echo "ℹ︎ SLUG is $SLUG"
2929
# Does it even make sense for VERSION to be editable in a workflow definition?
3030
if [[ -z "$VERSION" ]]; then
3131
VERSION=${GITHUB_REF#refs/tags/}
32+
VERSION=$(echo $VERSION | sed -e "s/^v//")
3233
fi
3334
echo "ℹ︎ VERSION is $VERSION"
3435

@@ -92,7 +93,11 @@ else
9293
fi
9394

9495
# Copy dotorg assets to /assets
95-
rsync -rc "$GITHUB_WORKSPACE/$ASSETS_DIR/" assets/ --delete
96+
if [[ -d "$GITHUB_WORKSPACE/$ASSETS_DIR/" ]]; then
97+
rsync -rc "$GITHUB_WORKSPACE/$ASSETS_DIR/" assets/ --delete
98+
else
99+
echo "ℹ︎ No assets directory found; skipping asset copy"
100+
fi
96101

97102
# Add everything and commit to SVN
98103
# The force flag ensures we recurse into subdirectories even if they are already added

0 commit comments

Comments
 (0)