Compare commits

...

2 commits

Author SHA1 Message Date
c97b8bb435
g
Some checks failed
/ publish (push) Failing after 6m24s
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
2025-08-12 17:12:17 +02:00
5b2423e03f
g
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
2025-08-12 17:11:47 +02:00
2 changed files with 6 additions and 5 deletions

View file

@ -7,15 +7,16 @@ 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" "${{ env.GITHUB_ACTOR }}" "${{ secrets.PACKAGE }}" - run: bash ./scripts/publish_packages.sh "./bin"
env:
LOGIN: ${{ env.GITHUB_ACTOR }}
PASSWORD: ${{ secrets.PACKAGE }}
- run: make publish_password - run: make publish_password
env: env:
VER: latest VER: latest

View file

@ -3,7 +3,7 @@
echo "Publish generique package" echo "Publish generique package"
PATH=${1} PATH=${1}
USER=${2} USER=${LOGIN}
TOKEN=${3} TOKEN=${PASSWORD}
echo "${USER}:${TOKEN}" echo "${USER}:${TOKEN}"