Skip to content

Commit b61a6f3

Browse files
authored
Merge pull request #6 from CastellaniDavide:envirorment-variables
envirorment-variables
2 parents 7be8629 + e260c36 commit b61a6f3

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.github/workflows/on-push.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,24 @@ jobs:
5757
# cd ./debian/
5858
# sudo debuild -S -sa
5959

60+
test-enviroment-variabiles:
61+
runs-on: ubuntu-latest
62+
steps:
63+
- uses: actions/checkout@v2
64+
- uses: oprypin/find-latest-tag@v1
65+
with:
66+
repository: CastellaniDavide/create_structure
67+
releases-only: true
68+
id : latest
69+
70+
- run: echo "Octokit is at version ${{ steps.latest.outputs.tag }}"
71+
- name: Set envirorment varible(s)
72+
run: |
73+
echo "::set-output name=VERSION_TAG::$(echo ${{ steps.latest.outputs.tag }} | sed 's/v//')"
74+
id: envirorment-variables
75+
76+
- run: echo ${{ steps.envirorment-variables.outputs.VERSION_TAG }}
77+
6078
test-choco:
6179
runs-on: windows-latest
6280
steps:

.github/workflows/on-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ jobs:
108108
# runs-on: ubuntu-latest
109109
# steps:
110110
# - uses: actions/checkout@v1
111-
# - name: Install dependences
111+
# - name: Install all dependences
112112
# run: |
113113
# sudo add-apt-repository ppa:jyrki-pulliainen/dh-virtualenv
114114
# sudo apt-get update
115-
# sudo apt-get install build-essential debhelper devscripts equivs dh-virtualenv python3.8
115+
# sudo apt-get install build-essential debhelper devscripts equivs dh-virtualenv python3.8 gnupg gnupg2
116116

117117
# - name: Create Debian package
118118
# run: |

0 commit comments

Comments
 (0)