Skip to content

Commit

Permalink
Merge pull request #1 from Kapalak/Feature1_AddFooter
Browse files Browse the repository at this point in the history
Add footer
  • Loading branch information
abmptit committed May 9, 2023
2 parents 6000336 + 834308d commit dbc6ba9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Branch name
run: echo running on branch ${GITHUB_REF##*/}
run: echo running on branch ${{ github.head_ref }}
- name: Login to DockerHub Registry
run: echo ${{ secrets.DOCKER_HUB_PASSWORD }} | docker login -u ${{ secrets.DOCKER_HUB_LOGIN }} --password-stdin
- name: build docker image
run: docker build . --file ./docker/dockerfile --tag abmptit/docker-lab-static-website:${GITHUB_REF##*/}
run: docker build . --file ./docker/dockerfile --tag abmptit/docker-lab-static-website:${{ github.head_ref }}
- name: Push the Docker image
run: docker push abmptit/docker-lab-static-website:${GITHUB_REF##*/}
run: docker push abmptit/docker-lab-static-website:${{ github.head_ref }}
5 changes: 5 additions & 0 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ <H2>Get started</H2>

<P> Version 1.0.2 </P>

<p class="txt_copyright">
<span>MOMENTUM TECHNOLOGIES 2003-2021&nbsp;</span>
<span>TOUS DROITS RÉSERVÉS © / SMQ CERTIFIÉE ISO 9001:2015</span>
</p>

</BODY>

</HTML>

0 comments on commit dbc6ba9

Please sign in to comment.