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:
|
publish:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
|
- run: echo All good!
|
||||||
- run: apt-get update && apt-get install -y make
|
- run: apt-get update && apt-get install -y make
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-go@v5
|
- uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: "1.21"
|
go-version: "1.21"
|
||||||
|
- run: ls -la
|
||||||
- run: make build_password
|
- run: make build_password
|
||||||
- run: bash ./scripts/publish_packages.sh "./bin"
|
- run: bash ./scripts/publish_packages.sh "./bin" "${{ env.GITHUB_ACTOR }}" "${{ secrets.PACKAGE }}"
|
||||||
env:
|
|
||||||
LOGIN: ${{ env.GITHUB_ACTOR }}
|
|
||||||
PASSWORD: ${{ secrets.PACKAGE }}
|
|
||||||
- run: make publish_password
|
- run: make publish_password
|
||||||
env:
|
env:
|
||||||
VER: latest
|
VER: latest
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
echo "Publish generique package"
|
echo "Publish generique package"
|
||||||
|
|
||||||
PATH=${1}
|
PATH=${1}
|
||||||
USER=${LOGIN}
|
USER=${2}
|
||||||
TOKEN=${PASSWORD}
|
TOKEN=${3}
|
||||||
|
|
||||||
echo "${USER}:${TOKEN}"
|
echo "${USER}:${TOKEN}"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue