Skip to content

Commit

Permalink
test: github actions OVH
Browse files Browse the repository at this point in the history
  • Loading branch information
FlawaCLV committed Nov 23, 2023
1 parent 4e48772 commit 0b58fe6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/actions/docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ runs:
password: ${{ inputs.password }}
registry: ${{ inputs.registry }}

- shell: bash
run: echo ${{ inputs.registry }}

- name: Build the Docker image
shell: bash
run: docker build -t ${{ inputs.registry }}/${{ inputs.image_name }}:${{ steps.date.outputs.date }}-${{ steps.commit.outputs.short }} -t ${{ inputs.registry }}/${{ inputs.image_name }}:${{ inputs.image_tag_stable }} -f ${{ inputs.dockerfile_path }} .
Expand Down
2 changes: 1 addition & 1 deletion api/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ const validateCustomHeader = require("./middlewares/validateCustomHeader");

app.get("/", async (req, res) => {
const d = new Date();
res.status(200).send("SNU OVH Registry v4" + d.toLocaleString());
res.status(200).send("SNU OVH Registry v5" + d.toLocaleString());
});

app.get("/testsentry", async (req, res) => {
Expand Down

0 comments on commit 0b58fe6

Please sign in to comment.