diff --git a/.github/workflows/docker-compose-publish.yml b/.github/workflows/docker-compose-publish.yml index c53eb35..e9e89ad 100644 --- a/.github/workflows/docker-compose-publish.yml +++ b/.github/workflows/docker-compose-publish.yml @@ -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 }} diff --git a/app1/index.js b/app1/index.js index 95cfbca..6a4d2f3 100644 --- a/app1/index.js +++ b/app1/index.js @@ -3,7 +3,7 @@ const fastify = require('fastify')({ }) fastify.get('/', async (request, reply) => { - return { hello: 'world test' } + return { hello: 'world' } }) const start = async () => {