Skip to content

Commit

Permalink
feat: commit 01 of lesson 04 of the "Integração Contínua: Pipeline Do…
Browse files Browse the repository at this point in the history
…cker no Github Actions" course
  • Loading branch information
AdautoDCJunior committed Jan 23, 2024
1 parent 8a5f757 commit 1841cb0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,10 @@ jobs:
- uses: actions/checkout@v3

- name: Set up docker
uses: docker/[email protected]
uses: docker/[email protected]

- name: Docker login
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
test:
strategy:
matrix:
go_version: ['1.17', '1.18', '>=1.18']
os: ['ubuntu-latest', 'ubuntu-20.04']
go_version: ['>=1.18']
os: ['ubuntu-latest']

runs-on: ${{ matrix.os }}

Expand Down

0 comments on commit 1841cb0

Please sign in to comment.