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 7c3551c commit edbfd85Copy full SHA for edbfd85
.github/workflows/build.yml
@@ -15,7 +15,7 @@ jobs:
15
id: get_version
16
run: |
17
value=`grep -oP 'docker \K[\d\.]*' conf/dependencies.yml`
18
- echo "{VERSION}={value}" >> $GITHUB_OUTPUT
+ echo "VERSION=$value" >> $GITHUB_OUTPUT
19
- name: Setup Python
20
uses: LizardByte/setup-python-action@master
21
with:
@@ -32,7 +32,6 @@ jobs:
32
env:
33
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
34
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
35
- VERSION: ${{ steps.get_version.outputs.VERSION }}
36
run: curl -u "${NEXUS_USERNAME}:${NEXUS_PASSWORD}" -X PUT --upload-file package.zip https://nexus.sismics.com/repository/sismics/docker-${VERSION}.zip;
37
- name: Create Github Release
38
uses: actions/create-release@v1
0 commit comments