Skip to content

Commit

Permalink
Merge pull request #9 from sonia-auv/develop
Browse files Browse the repository at this point in the history
Master workflows fix
  • Loading branch information
supertoto29 authored Feb 8, 2021
2 parents 600a242 + 7d8b924 commit bb127cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-image-perception-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
- name: Set Target version
run: echo '::set-env name=TARGET_VERSION::release-'$(sed -n -e 's/.*<version>\(.*\)<\/version>.*/\1/p' package.xml)
run: echo "TARGET_VERSION=release-$(sed -n -e 's/.*<version>\(.*\)<\/version>.*/\1/p' package.xml)" >> $GITHUB_ENV

- name: Build the docker image (perception based)
run: |
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
- name: Set Target version
run: echo '::set-env name=TARGET_VERSION::release-'$(sed -n -e 's/.*<version>\(.*\)<\/version>.*/\1/p' package.xml)
run: echo "TARGET_VERSION=release-$(sed -n -e 's/.*<version>\(.*\)<\/version>.*/\1/p' package.xml)" >> $GITHUB_ENV

- name: Enable Docker Daemon Experimental Features
run: |
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set Target version
run: echo '::set-env name=TARGET_VERSION::'$(sed -n -e 's/.*<version>\(.*\)<\/version>.*/\1/p' package.xml)
run: echo "TARGET_VERSION=release-$(sed -n -e 's/.*<version>\(.*\)<\/version>.*/\1/p' package.xml)" >> $GITHUB_ENV

- name: Create Git Tag
run: |
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>provider_vision</name>
<version>0.0.1</version>
<version>0.1.0</version>
<description>The provider_vision package - Point Grey Spinnaker based camera driver</description>

<author>Abhishek Bajpayee</author>
Expand Down

0 comments on commit bb127cc

Please sign in to comment.