Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows … #10
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: "pre-release" | |
on: | |
push: | |
branches: | |
- "master" | |
jobs: | |
macos: | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Increment Version | |
run: ./version.sh | |
- uses: EndBug/add-and-commit@v7 | |
with: | |
default_author: github_actions | |
- name: Build | |
run: make release | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: build | |
path: . | |
pre-release: | |
name: "Pre Release" | |
runs-on: "ubuntu-latest" | |
needs: macos | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v4.1.7 | |
with: | |
name: build | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: true | |
title: "Development Build" | |
files: | | |
*.tgz | |
*.zip |