Skip to content

Bump actions/upload-artifact from 3 to 4 #194

Bump actions/upload-artifact from 3 to 4

Bump actions/upload-artifact from 3 to 4 #194

Workflow file for this run

name: Continuous integration
on:
push:
paths-ignore:
- '**.md'
jobs:
build:
name: Build and Test
uses: ./.github/workflows/build.yml
with:
createArtifact: ${{ startsWith(github.ref, 'refs/tags/') }}
artifactVersion: ${{ github.ref_name }}
release:
name: Create Release
needs: build
if: ${{ startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v3
- name: Create GitHub release
uses: softprops/action-gh-release@v1
with:
files: 'artifact/*.zip'
name: TeamsStatusPub ${{ github.ref_name }}