Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish artifacts to external repositories when tagged version is released | |
on: | |
release: | |
# Only do the release on proper releases (with semantic versioning tags). | |
types: [released] | |
jobs: | |
publish-docker-image: | |
uses: ./.github/workflows/build-docker-registry.yml | |
with: | |
git_ref: ${{ github.ref_name }} | |
# Creation of semver tag also causes creation of 'latest' tag | |
image_tags: | | |
type=semver,pattern={{version}} | |
publish-vsix: | |
uses: ./.github/workflows/build-vsix-marketplaces.yml | |
with: | |
git_ref: ${{ github.ref_name }} | |
version: ${{ github.ref_name }} | |
secrets: | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
OPEN_VSX_PAT: ${{ secrets.OPEN_VSX_PAT }} |