Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
duccas committed Oct 20, 2023
1 parent 4ecf261 commit 861f26c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker_build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
- name: Get image name and version from release file
id: get_info
run: |
echo "::set-output name=image_name::$(grep 'image_name = ' release | cut -d':' -f2)"
echo "::set-output name=version::$(grep 'version = ' release | cut -d':' -f2)"
echo "::set-output name=image_name::$(grep 'image_name =' release | cut -d'=' -f2 | tr -d ' \"')"
echo "::set-output name=version::$(grep 'version =' release | cut -d'=' -f2 | tr -d ' \"')"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
Expand Down
10 changes: 0 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,6 @@ jobs:
release_name: ${{ env.RELEASE_NAME }}
body: ${{ env.RELEASE_BODY }}

- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./build/suid
asset_name: suid
asset_content_type: application/octet-stream

- name: Create Tag
run: |
git tag ${{ env.TAG_NAME }}
Expand Down

0 comments on commit 861f26c

Please sign in to comment.