Compare commits
No commits in common. "c97b8bb4352202b7be311ae16a44efb4a7d5d803" and "06ae277393497303a5ff92f31a01db02e1c19fdf" have entirely different histories.
c97b8bb435
...
06ae277393
2 changed files with 5 additions and 6 deletions
|
|
@ -7,16 +7,15 @@ jobs:
|
|||
publish:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- run: echo All good!
|
||||
- run: apt-get update && apt-get install -y make
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: "1.21"
|
||||
- run: ls -la
|
||||
- run: make build_password
|
||||
- run: bash ./scripts/publish_packages.sh "./bin"
|
||||
env:
|
||||
LOGIN: ${{ env.GITHUB_ACTOR }}
|
||||
PASSWORD: ${{ secrets.PACKAGE }}
|
||||
- run: bash ./scripts/publish_packages.sh "./bin" "${{ env.GITHUB_ACTOR }}" "${{ secrets.PACKAGE }}"
|
||||
- run: make publish_password
|
||||
env:
|
||||
VER: latest
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
echo "Publish generique package"
|
||||
|
||||
PATH=${1}
|
||||
USER=${LOGIN}
|
||||
TOKEN=${PASSWORD}
|
||||
USER=${2}
|
||||
TOKEN=${3}
|
||||
|
||||
echo "${USER}:${TOKEN}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue