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