Skip to content

Commit

Permalink
fixup! fixup! Reference to self
Browse files Browse the repository at this point in the history
  • Loading branch information
foretspaisibles committed Sep 16, 2023
1 parent 18109af commit f0602b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
- name: 'Log in to the Container registry'
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: "${{ env.REGISTRY }}"
username: "${{ github.actor }}"
password: "${{ secrets.GITHUB_TOKEN }}"

- name: 'Build, validate and publish Linux'
uses: melusina-org/cl-atelier/actions/build-validate-publish@actions-2
Expand Down
6 changes: 3 additions & 3 deletions actions/build-validate-publish/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ runs:

- name: 'Build Artefact'
shell: 'sh'
run: development/build {{ inputs.artefact }}
run: development/build "${{ inputs.artefact }}"

- name: 'Validate Artefact'
shell: 'sh'
run: development/testimage {{ inputs.artefact }}
run: development/testimage "${{ inputs.artefact }}"

- name: 'Publish Artefact'
shell: 'sh'
run: development/publish {{ inputs.artefact }}
run: development/publish "${{ inputs.artefact }}"

# End of file `action.yaml'

0 comments on commit f0602b1

Please sign in to comment.