From c25f5baa7bc590356c9114bc8236029795dcd2c5 Mon Sep 17 00:00:00 2001 From: Igor Graziano Date: Tue, 24 Sep 2024 17:55:39 -0300 Subject: [PATCH] renamed image --- .github/workflows/action.yml | 4 ++-- test.cjs | 20 -------------------- 2 files changed, 2 insertions(+), 22 deletions(-) delete mode 100644 test.cjs diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 26f5110..69af871 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -14,8 +14,8 @@ jobs: uses: actions/checkout@v2 - name: Publish run: | - docker build -t ${{ vars.DOCKER_REGISTRY }}/wpp-bot:latest . - docker push ${{ vars.DOCKER_REGISTRY }}/wpp-bot:latest + docker build -t ${{ vars.DOCKER_REGISTRY }}/sticker-bot:latest . + docker push ${{ vars.DOCKER_REGISTRY }}/sticker-bot:latest deploy: name: Deploy runs-on: ubuntu-latest diff --git a/test.cjs b/test.cjs deleted file mode 100644 index 302b6e0..0000000 --- a/test.cjs +++ /dev/null @@ -1,20 +0,0 @@ -const { Client } = require('whatsapp-web.js'); - -const client = new Client(); - -client.on('qr', (qr) => { - // Generate and scan this code with your phone - console.log('QR RECEIVED', qr); -}); - -client.on('ready', () => { - console.log('Client is ready!'); -}); - -client.on('message', msg => { - if (msg.body == '!ping') { - msg.reply('pong'); - } -}); - -client.initialize(); \ No newline at end of file