Merge pull request #309 from jolicode/cs #15
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: Artifacts | |
on: | |
push: | |
branches: [ "main" ] | |
release: | |
types: [ "created" ] | |
permissions: | |
contents: write | |
jobs: | |
phars: | |
name: Create phars and upload | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/install | |
with: | |
composer-flags: "--no-dev" | |
- uses: ./.github/actions/phar | |
- name: Upload the Linux phar | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'castor.linux-amd64.phar' | |
path: tools/phar/build/castor.linux-amd64.phar | |
if-no-files-found: error | |
- name: Upload the Darwin AMD64 phar | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'castor.darwin-amd64.phar' | |
path: tools/phar/build/castor.darwin-amd64.phar | |
if-no-files-found: error | |
- name: Upload the Darwin ARM64 phar | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'castor.darwin-arm64.phar' | |
path: tools/phar/build/castor.darwin-arm64.phar | |
if-no-files-found: error | |
- name: Upload the Windows phar | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'castor-windows-amd64.phar' | |
path: tools/phar/build/castor.windows-amd64.phar | |
if-no-files-found: error | |
static-linux: | |
needs: phars | |
name: Create Linux static binary and upload | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/install | |
- uses: ./.github/actions/cache | |
with: | |
os: 'linux' | |
- name: retrieve phar artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: tools/phar/build | |
merge-multiple: true | |
- uses: ./.github/actions/static | |
with: | |
os: 'linux' | |
- name: Upload the Linux static binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'castor.linux-amd64' | |
path: ./castor.linux-amd64 | |
if-no-files-found: error | |
static-darwin-amd64: | |
needs: phars | |
name: Create MacOs amd64 static binary and upload | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/install | |
- uses: ./.github/actions/cache | |
with: | |
os: 'darwin' | |
- name: retrieve phar artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: tools/phar/build | |
merge-multiple: true | |
- uses: ./.github/actions/static | |
with: | |
os: 'darwin-amd64' | |
- name: Upload the MacOs amd64 static binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'castor.darwin-amd64' | |
path: ./castor.darwin-amd64 | |
if-no-files-found: error | |
release: | |
name: Upload artifacts to the release | |
if: github.event_name == 'release' | |
needs: [phars, static-linux, static-darwin-amd64] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: retrieve artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: build | |
merge-multiple: true | |
- name: Upload files | |
run: | | |
gh release upload ${{ github.ref_name }} ./build/castor.darwin-amd64 | |
gh release upload ${{ github.ref_name }} ./build/castor.darwin-amd64.phar | |
gh release upload ${{ github.ref_name }} ./build/castor.darwin-arm64.phar | |
gh release upload ${{ github.ref_name }} ./build/castor.linux-amd64 | |
gh release upload ${{ github.ref_name }} ./build/castor.linux-amd64.phar | |
gh release upload ${{ github.ref_name }} ./build/castor.windows-amd64.phar | |
env: | |
GH_TOKEN: ${{ github.token }} |