Skip to content

Commit

Permalink
test file change
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanoFresh committed Aug 16, 2021
1 parent 1d79803 commit 5fc94e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-compose-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ jobs:
# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
- name: Login to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
with:
registry: ${{ env.REGISTRY }}
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion app1/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const fastify = require('fastify')({
})

fastify.get('/', async (request, reply) => {
return { hello: 'world test' }
return { hello: 'world' }
})

const start = async () => {
Expand Down

0 comments on commit 5fc94e4

Please sign in to comment.