[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support to Electron v19 #2323

Closed
wants to merge 5 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1273,7 +1273,7 @@ jobs:
- name: Build
run: |
DOCKER_TAG="${{ steps.compute-tag.outputs.tag }}"
docker build -f Dockerfile.build . -t ghcr.io/coqui-ai/stt-build:latest -t "ghcr.io/coqui-ai/stt-build:${DOCKER_TAG}"
docker build -f Dockerfile.build . -t ghcr.io/iarahealth/stt-build:latest -t "ghcr.io/iarahealth/stt-build:${DOCKER_TAG}"
docker-publish:
name: "Build and publish Docker training image to GHCR"
runs-on: ubuntu-20.04
Expand Down Expand Up @@ -1314,14 +1314,14 @@ jobs:
set -ex
declare -a tag_args=()
for tag in ${{ steps.compute-tag.outputs.tags }}; do
tag_args+=("-t" "ghcr.io/coqui-ai/stt-train:${tag}")
tag_args+=("-t" "ghcr.io/iarahealth/stt-train:${tag}")
done
docker build -f Dockerfile.train . ${tag_args[@]}
- name: Push
run: |
set -ex
for tag in ${{ steps.compute-tag.outputs.tags }}; do
docker push ghcr.io/coqui-ai/stt-train:${tag}
docker push ghcr.io/iarahealth/stt-train:${tag}
done
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))
twine-upload-decoder:
Expand Down Expand Up @@ -1420,7 +1420,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 12
registry-url: 'https://registry.npmjs.org'
registry-url: https://npm.pkg.github.com/
- uses: actions/setup-python@v4
with:
python-version: 3.8
Expand All @@ -1445,7 +1445,7 @@ jobs:
npm publish --access=public --verbose $pkg --tag ${{ steps.compute-npm-tag.outputs.npm-tag }}
done
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Upload artifacts to GitHub release
uses: ./.github/actions/upload-release-asset
with:
Expand Down