diff --git a/.github/workflows/go-release.yml b/.github/workflows/go-release.yml index d52d09a..e3fcc8b 100644 --- a/.github/workflows/go-release.yml +++ b/.github/workflows/go-release.yml @@ -17,8 +17,8 @@ jobs: - name: Checkout Frontend uses: actions/checkout@v4 with: - repository: 'donetick/frontend' token: ${{ secrets.GITHUB_TOKEN }} + repository: 'amy/donetick-fe' path: 'frontend-code' # build frontend - name: Install Node.js @@ -56,23 +56,3 @@ jobs: args: release --clean --skip=validate env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # I added QEMU Emulation support for non-native architectures and also Buildx to enables multi-architecture. not sure if there is better/faster way to do this - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Log in to Docker Hub - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - - name: Build and push Docker image - uses: docker/build-push-action@v5 - with: - context: . - push: true - tags: ${{ secrets.DOCKER_USERNAME }}/donetick:latest, ${{ secrets.DOCKER_USERNAME }}/donetick:${{ github.ref_name }} - platforms: linux/amd64,linux/arm64,linux/arm/v7