Skip to content

Commit a426bb3

Browse files
authored
v08.02
1 parent e08c570 commit a426bb3

File tree

8 files changed

+47
-33
lines changed

8 files changed

+47
-33
lines changed

.github/workflows/on-push.yml

Lines changed: 1 addition & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -175,31 +175,4 @@ jobs:
175175
choco install python
176176
choco install createstructure -d-v -s . --pre -y --force
177177
move ./* ../
178-
179-
snap:
180-
runs-on: ubuntu-16.04
181-
environment:
182-
name: snap
183-
url: https://snapcraft.io/createstructure
184-
185-
steps:
186-
- uses: actions/checkout@v2
187-
- name: Install prerequirements
188-
run: |
189-
sudo snap install snapcraft --classic
190-
- name: Login
191-
run: |
192-
echo "[login.ubuntu.com]" > snapcraft.login
193-
echo "macaroon = ${{ secrets.SNAP_MACAROON }}" >> snapcraft.login
194-
echo "unbound_discharge = ${{ secrets.SNAP_UNBOUND_DISCARGE }}" >> snapcraft.login
195-
echo "email = ${{ secrets.SNAP_EMAIL }}" >> snapcraft.login
196-
cat snapcraft.login | snapcraft login --with -
197-
rm snapcraft.login
198-
- name: Build snap
199-
run: |
200-
snapcraft
201-
- name: Publish
202-
run: |
203-
snapcraft upload *.snap --release beta
204-
#stable
205-
178+

.github/workflows/on-release.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,3 +264,30 @@ jobs:
264264
asset_path: ${{ steps.envirorment-variables.outputs.NUPKG_FILE }}
265265
asset_name: ${{ steps.envirorment-variables.outputs.NUPKG_FILE }}
266266
asset_content_type: application/zip
267+
268+
snap:
269+
needs: test-enviroment-variabiles
270+
runs-on: ubuntu-16.04
271+
environment:
272+
name: snap
273+
url: https://snapcraft.io/createstructure
274+
275+
steps:
276+
- uses: actions/checkout@v2
277+
- name: Install prerequirements
278+
run: |
279+
sudo snap install snapcraft --classic
280+
- name: Login
281+
run: |
282+
echo "[login.ubuntu.com]" > snapcraft.login
283+
echo "macaroon = ${{ secrets.SNAP_MACAROON }}" >> snapcraft.login
284+
echo "unbound_discharge = ${{ secrets.SNAP_UNBOUND_DISCARGE }}" >> snapcraft.login
285+
echo "email = ${{ secrets.SNAP_EMAIL }}" >> snapcraft.login
286+
cat snapcraft.login | snapcraft login --with -
287+
rm snapcraft.login
288+
- name: Build snap
289+
run: |
290+
snapcraft
291+
- name: Publish
292+
run: |
293+
snapcraft upload *.snap --release stable

choco/ReadMe.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# createstructure
2-
[![GitHub license](https://img.shields.io/badge/license-GNU-green?style=flat)](https://github.com/createstructure/createstructure/blob/master/LICENSE) ![Author](https://img.shields.io/badge/author-Castellani%20Davide-green?style=flat) ![Version](https://img.shields.io/badge/version-v08.01-blue?style=flat) ![Language Python](https://img.shields.io/badge/language-Python-yellowgreen?style=flat) ![sys.platform supported](https://img.shields.io/badge/OS%20platform%20supported-Linux,%20Windows%20&%20Mac%20OS-blue?style=flat) [![On GitHub](https://img.shields.io/badge/on%20GitHub-True-green?style=flat&logo=github)](https://github.com/createstructure/createstructure) ![PyPI](https://img.shields.io/pypi/v/createstructure)
2+
[![GitHub license](https://img.shields.io/badge/license-GNU-green?style=flat)](https://github.com/createstructure/createstructure/blob/master/LICENSE) ![Author](https://img.shields.io/badge/author-Castellani%20Davide-green?style=flat) ![Version](https://img.shields.io/badge/version-v08.02-blue?style=flat) ![Language Python](https://img.shields.io/badge/language-Python-yellowgreen?style=flat) ![sys.platform supported](https://img.shields.io/badge/OS%20platform%20supported-Linux,%20Windows%20&%20Mac%20OS-blue?style=flat) [![On GitHub](https://img.shields.io/badge/on%20GitHub-True-green?style=flat&logo=github)](https://github.com/createstructure/createstructure) ![PyPI](https://img.shields.io/pypi/v/createstructure)
33

44
![](https://github.com/CastellaniDavide/createstructure/raw/master/docs/createstructure.png)
55

@@ -182,6 +182,7 @@ With this program, you can easily create a repository on GitHub :octocat: with a
182182

183183
### Changelog
184184
![](https://www.ashoka.org/sites/default/files/styles/medium_1600x1000/public/old_way_new_way.jpg?itok=3JnbJz4O)
185+
- [08.02_2021-04-17](#0802_2021-04-17)
185186
- [08.01_2021-04-15](#0801_2021-04-15)
186187
- [7.9_2021-04-04](#79_2021-04-04)
187188
- [7.8_2021-03-14](#78_2021-03-14)
@@ -208,6 +209,9 @@ With this program, you can easily create a repository on GitHub :octocat: with a
208209
- [2.0_2020-03-24](#20_2020-03-24)
209210
- [1.0_2020-03-24](#10_2020-03-24)
210211

212+
#### 08.02_2021-04-17
213+
- On release push snap package as stable
214+
211215
#### 08.01_2021-04-15
212216
- Added the download option
213217
- Minor changes

choco/createstructure.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
33
<metadata>
44
<id>createstructure</id>
5-
<version>08.01</version>
5+
<version>08.02</version>
66
<title>createstructure</title>
77
<authors>Castellani Davide</authors>
88
<projectUrl>https://github.com/createstructure/createstructure</projectUrl>

debian/createstructure.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\" This man page for createstructure
2-
.TH createstructure "1" "2021-04-15" "createstructure 08.01" "User Commands"
2+
.TH createstructure "1" "2021-04-17" "createstructure 08.02" "User Commands"
33
.SH NAME
44
createstructure
55
.SH SYNOPSIS

debian/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
createstructure (08.02) focal; urgency=medium
2+
3+
* On release push snap package as stable
4+
5+
-- Castellani Davide <help@castellanidavide.it> Sat, 17 Apr 2021 7:51:00 +1000
6+
17
createstructure (08.01) focal; urgency=medium
28

39
* Added the download option

docs/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# createstructure
2-
[![GitHub license](https://img.shields.io/badge/license-GNU-green?style=flat)](https://github.com/createstructure/createstructure/blob/master/LICENSE) ![Author](https://img.shields.io/badge/author-Castellani%20Davide-green?style=flat) ![Version](https://img.shields.io/badge/version-v08.01-blue?style=flat) ![Language Python](https://img.shields.io/badge/language-Python-yellowgreen?style=flat) ![sys.platform supported](https://img.shields.io/badge/OS%20platform%20supported-Linux,%20Windows%20&%20Mac%20OS-blue?style=flat) [![On GitHub](https://img.shields.io/badge/on%20GitHub-True-green?style=flat&logo=github)](https://github.com/createstructure/createstructure) ![PyPI](https://img.shields.io/pypi/v/createstructure)
2+
[![GitHub license](https://img.shields.io/badge/license-GNU-green?style=flat)](https://github.com/createstructure/createstructure/blob/master/LICENSE) ![Author](https://img.shields.io/badge/author-Castellani%20Davide-green?style=flat) ![Version](https://img.shields.io/badge/version-v08.02-blue?style=flat) ![Language Python](https://img.shields.io/badge/language-Python-yellowgreen?style=flat) ![sys.platform supported](https://img.shields.io/badge/OS%20platform%20supported-Linux,%20Windows%20&%20Mac%20OS-blue?style=flat) [![On GitHub](https://img.shields.io/badge/on%20GitHub-True-green?style=flat&logo=github)](https://github.com/createstructure/createstructure) ![PyPI](https://img.shields.io/pypi/v/createstructure)
33

44
![](https://github.com/CastellaniDavide/createstructure/raw/master/docs/createstructure.png)
55

@@ -182,6 +182,7 @@ With this program, you can easily create a repository on GitHub :octocat: with a
182182

183183
### Changelog
184184
![](https://www.ashoka.org/sites/default/files/styles/medium_1600x1000/public/old_way_new_way.jpg?itok=3JnbJz4O)
185+
- [08.02_2021-04-17](#0802_2021-04-17)
185186
- [08.01_2021-04-15](#0801_2021-04-15)
186187
- [7.9_2021-04-04](#79_2021-04-04)
187188
- [7.8_2021-03-14](#78_2021-03-14)
@@ -208,6 +209,9 @@ With this program, you can easily create a repository on GitHub :octocat: with a
208209
- [2.0_2020-03-24](#20_2020-03-24)
209210
- [1.0_2020-03-24](#10_2020-03-24)
210211

212+
#### 08.02_2021-04-17
213+
- On release push snap package as stable
214+
211215
#### 08.01_2021-04-15
212216
- Added the download option
213217
- Minor changes

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: createstructure
2-
version: '08.01'
2+
version: '08.02'
33
summary: With this program, you can easily create a repository on GitHub.
44
description: |
55
With this program, you can easily create a repository on GitHub with a basic template, personalized for your use.

0 commit comments

Comments
 (0)