2 Commits

Author SHA1 Message Date
ac6f0b4557 Update package.json 2023-06-12 02:48:36 +10:00
ad5f9418f5 Update docker-push.yml 2023-06-12 02:48:20 +10:00
2 changed files with 7 additions and 2 deletions

View File

@@ -18,9 +18,14 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Set up environment variables
id: env
run: |
echo "IMAGE_TAG=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ${{ github.repository }}:${{ github.sha }}
tags: docker.io/litruv/api-websocket-bridge:${{ env.IMAGE_TAG }}

View File

@@ -1,6 +1,6 @@
{
"name": "api-websocket-bridge",
"version": "1.0.4",
"version": "1.0.5",
"description": "API WebSocket Bridge is a Node.js application that provides a WebSocket server for real-time communication. It allows clients to connect and exchange data using the WebSocket protocol",
"main": "source/index.js",
"scripts": {