Bump @vscode/vsce from 3.1.1 to 3.2.0 #371
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: Build the container image | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
name: Build and publish the container with docker | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- distri: leap-15.5 | |
build_args: | | |
"SERVER_VERSION=0.0.1" | |
"LEAP_VERSION=15.5" | |
suffix: leap | |
- distri: leap-15.6 | |
build_args: | | |
"SERVER_VERSION=0.0.1" | |
"LEAP_VERSION=15.6" | |
suffix: leap | |
- distri: bci-15.5 | |
build_args: | | |
"SERVER_VERSION=0.0.1" | |
"SLES_VERSION=15.5" | |
suffix: bci | |
- distri: bci-15.6 | |
build_args: | | |
"SERVER_VERSION=0.0.1" | |
"SLES_VERSION=15.6" | |
suffix: bci | |
build_args: | |
- | | |
"SERVER_VERSION=0.0.1" | |
suffix: | |
- "" | |
distri: | |
- centos | |
- tumbleweed | |
- fedora | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push the image | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
platforms: linux/amd64 | |
file: "Containerfile.${{ matrix.suffix || matrix.distri }}" | |
push: ${{ contains(github.ref, 'refs/heads/main') || contains(github.ref, 'refs/tags/') }} | |
build-args: ${{ matrix.build_args }} | |
tags: | | |
ghcr.io/dcermak/rpm-spec-language-server:${{ matrix.distri }} |