diff --git a/.github/workflows/main-workflow.yml b/.github/workflows/main-workflow.yml index 601f587..bc856c3 100644 --- a/.github/workflows/main-workflow.yml +++ b/.github/workflows/main-workflow.yml @@ -8,23 +8,31 @@ jobs: docker: runs-on: ubuntu-latest steps: - - - name: Checkout + - name: Checkout uses: actions/checkout@v2 - - - name: Set up Docker Buildx + + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 - - - name: Login to DockerHub + + - name: Login to DockerHub uses: docker/login-action@v1 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - - name: Build and push + + - name: Build and push uses: docker/build-push-action@v2 with: context: . push: true tags: aleleba/vscode:latest - platforms: linux/amd64,linux/arm64 \ No newline at end of file + platforms: linux/amd64,linux/arm64 + + - name: Trigger workflow in Gitea + if: success() + run: | + curl -X POST \ + -H "Authorization: token ${{ secrets.GITEA_API_TOKEN }}" \ + -H "Content-Type: application/json" \ + https://gitea.p-lao.com/api/v1/repos/aleleba/vscode-server/actions/workflows/main-workflow.yml/dispatches \ + -d '{"ref":"master","inputs":{"image":"gitea.p-lao.com/aleleba/vscode-server:latest"}}' diff --git a/version.txt b/version.txt index 23c635a..5365c9e 100755 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -3.2.14 +3.2.15