Merge pull request #9546 from ipfs/docker-image

fix: docker image publishing and experimental gh workflow
This commit is contained in:
Piotr Galar 2023-01-14 12:02:53 +01:00 committed by GitHub
commit ed9ad0cad9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ jobs:
- name: Get tags
id: tags
run: |
echo "value=<<EOF" >> $GITHUB_OUTPUT
echo "value<<EOF" >> $GITHUB_OUTPUT
./bin/get-docker-tags.sh "$(date -u +%F)" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
shell: bash
@ -38,7 +38,7 @@ jobs:
- name: Log in to Docker Hub
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
username: ${{ secrets.DOCKER_USERNAME }}
username: ${{ vars.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build Docker image and publish to Docker Hub

View File

@ -10,7 +10,7 @@ on:
jobs:
runner:
if: github.repository == 'ipfs/kubo' || github.event_name == 'workflow_dispatch'
uses: ipfs/kubo/.github/workflows/runner.yml
uses: ipfs/kubo/.github/workflows/runner.yml@master
gobuild:
needs: [runner]
runs-on: ${{ fromJSON(needs.runner.outputs.config).labels }}

View File

@ -10,7 +10,7 @@ on:
jobs:
runner:
if: github.repository == 'ipfs/kubo' || github.event_name == 'workflow_dispatch'
uses: ipfs/kubo/.github/workflows/runner.yml
uses: ipfs/kubo/.github/workflows/runner.yml@master
sharness:
needs: [runner]
runs-on: ${{ fromJSON(needs.runner.outputs.config).labels }}