Skip to content

Commit

Permalink
Merge pull request #379 from appbaseio/fix/bash-exec
Browse files Browse the repository at this point in the history
Add fixes to make ssh-action work with a different instance
  • Loading branch information
deepjyoti30 authored Oct 30, 2023
2 parents f1b2677 + fdc7336 commit 6e6495b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/binary-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
AWS_SECRET_KEY: ${{ secrets.AWS_SECRET_KEY }}
VERSION: ${{ github.event.release.tag_name }}
- name: building binaries for eaas deployments
uses: appleboy/ssh-action@v1.0.0
uses: appleboy/ssh-action@v0.1.7
env:
VERSION: ${{ github.event.release.tag_name }}
with:
Expand All @@ -69,6 +69,8 @@ jobs:
envs: VERSION
script: |
source ~/.bashrc
export PATH=$PATH:/usr/local/go/bin:/usr/bin
export GOPATH=/home/centos/go
./build.sh ${VERSION}
build-sls:
Expand All @@ -94,6 +96,8 @@ jobs:
envs: VERSION
script: |
source ~/.bashrc
export PATH=$PATH:/usr/local/go/bin:/usr/bin
export GOPATH=/home/centos/go
./sls-build.sh ${VERSION} feat/true-sls
send-packer-event-arc:
Expand Down

0 comments on commit 6e6495b

Please sign in to comment.