Skip to content

Commit

Permalink
331 dockerhub rate limit - debug aissemble-fastapi with github action…
Browse files Browse the repository at this point in the history
…s - no docker login
  • Loading branch information
colinpalmer-pro committed Sep 18, 2024
1 parent d6f089b commit 2b84fe6
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.buildBranch }}
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# - name: Login to Docker Hub
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Install required packages
run: |
sudo apt-get update
Expand Down
19 changes: 19 additions & 0 deletions extensions/extensions-docker/aissemble-versioning/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,25 @@
<groupId>${group.fabric8.plugin}</groupId>
<artifactId>docker-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>docker</executable>
<arguments>
<argument>info</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 2b84fe6

Please sign in to comment.