Skip to content

Commit

Permalink
Merge pull request #121 from VitoVan/pre-013
Browse files Browse the repository at this point in the history
Publish 0.1.3
  • Loading branch information
VitoVan authored Jun 15, 2023
2 parents 18c28a8 + 0d398b5 commit ac0af51
Show file tree
Hide file tree
Showing 17 changed files with 167 additions and 72 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/calm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:

Linux:
Linux-and-Web:
runs-on: ubuntu-22.04

steps:
Expand All @@ -33,7 +33,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.tar
*.tgz
Expand All @@ -48,6 +48,8 @@ jobs:

env:
CI_MATRIX_OS: ${{ matrix.os }}
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1

steps:
- uses: actions/checkout@v3
Expand All @@ -59,7 +61,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.tgz
*.dmg
Expand All @@ -80,7 +82,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.tgz
*.zip
Expand Down
20 changes: 11 additions & 9 deletions .github/workflows/example-circles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Build
run: |
set -x
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.2/calm.tgz
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.3/calm.tgz
mkdir calm
tar xvf calm.tgz --directory=calm
ls -lah calm
Expand All @@ -34,7 +34,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*-web.zip
Linux:
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Build
run: |
set -x
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.2/calm.tgz
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.3/calm.tgz
mkdir calm
tar xvf calm.tgz --directory=calm
ls -lah calm
Expand All @@ -60,7 +60,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.AppImage
macOS:
Expand All @@ -72,15 +72,17 @@ jobs:

env:
CI_MATRIX_OS: ${{ matrix.os }}

HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1

steps:
- uses: actions/checkout@v3

- name: Build
run: |
set -x
export OS_SUBFIX=".${CI_MATRIX_OS}"
curl -L -o calm.dmg https://github.com/VitoVan/calm/releases/download/0.1.2/calm${OS_SUBFIX}.dmg
curl -L -o calm.dmg https://github.com/VitoVan/calm/releases/download/0.1.3/calm${OS_SUBFIX}.dmg
hdiutil attach calm.dmg
cp -R "/Volumes/Calm - CALM/Calm.app/Contents/MacOS/" calm
ls -lah calm
Expand All @@ -98,7 +100,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.dmg
Windows:
Expand All @@ -114,7 +116,7 @@ jobs:
run: |
set -x
pacman -S --noconfirm --needed unzip
curl -L -o calm.zip https://github.com/VitoVan/calm/releases/download/0.1.2/calm.zip
curl -L -o calm.zip https://github.com/VitoVan/calm/releases/download/0.1.3/calm.zip
unzip calm.zip -d calm
ls -lah calm
export PATH=$PATH:$(pwd)/calm/
Expand All @@ -128,6 +130,6 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.exe
18 changes: 10 additions & 8 deletions .github/workflows/example-fan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Build
run: |
set -x
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.2/calm.tgz
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.3/calm.tgz
mkdir calm
tar xvf calm.tgz --directory=calm
ls -lah calm
Expand All @@ -34,7 +34,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*-web.zip
Linux:
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Build
run: |
set -x
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.2/calm.tgz
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.3/calm.tgz
mkdir calm
tar xvf calm.tgz --directory=calm
ls -lah calm
Expand All @@ -60,7 +60,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.AppImage
macOS:
Expand All @@ -72,6 +72,8 @@ jobs:

env:
CI_MATRIX_OS: ${{ matrix.os }}
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1

steps:
- uses: actions/checkout@v3
Expand All @@ -80,7 +82,7 @@ jobs:
run: |
set -x
export OS_SUBFIX=".${CI_MATRIX_OS}"
curl -L -o calm.dmg https://github.com/VitoVan/calm/releases/download/0.1.2/calm${OS_SUBFIX}.dmg
curl -L -o calm.dmg https://github.com/VitoVan/calm/releases/download/0.1.3/calm${OS_SUBFIX}.dmg
hdiutil attach calm.dmg
cp -R "/Volumes/Calm - CALM/Calm.app/Contents/MacOS/" calm
ls -lah calm
Expand All @@ -98,7 +100,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.dmg
Windows:
Expand All @@ -114,7 +116,7 @@ jobs:
run: |
set -x
pacman -S --noconfirm --needed unzip
curl -L -o calm.zip https://github.com/VitoVan/calm/releases/download/0.1.2/calm.zip
curl -L -o calm.zip https://github.com/VitoVan/calm/releases/download/0.1.3/calm.zip
unzip calm.zip -d calm
ls -lah calm
export PATH=$PATH:$(pwd)/calm/
Expand All @@ -128,6 +130,6 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.exe
18 changes: 10 additions & 8 deletions .github/workflows/example-meditator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Build
run: |
set -x
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.2/calm.tgz
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.3/calm.tgz
mkdir calm
tar xvf calm.tgz --directory=calm
ls -lah calm
Expand All @@ -37,7 +37,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*-web.zip
Linux:
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Build
run: |
set -x
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.2/calm.tgz
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.3/calm.tgz
mkdir calm
tar xvf calm.tgz --directory=calm
ls -lah calm
Expand All @@ -63,7 +63,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.AppImage
macOS:
Expand All @@ -75,6 +75,8 @@ jobs:

env:
CI_MATRIX_OS: ${{ matrix.os }}
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1

steps:
- uses: actions/checkout@v3
Expand All @@ -83,7 +85,7 @@ jobs:
run: |
set -x
export OS_SUBFIX=".${CI_MATRIX_OS}"
curl -L -o calm.dmg https://github.com/VitoVan/calm/releases/download/0.1.2/calm${OS_SUBFIX}.dmg
curl -L -o calm.dmg https://github.com/VitoVan/calm/releases/download/0.1.3/calm${OS_SUBFIX}.dmg
hdiutil attach calm.dmg
cp -R "/Volumes/Calm - CALM/Calm.app/Contents/MacOS/" calm
ls -lah calm
Expand All @@ -101,7 +103,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.dmg
Windows:
Expand All @@ -117,7 +119,7 @@ jobs:
run: |
set -x
pacman -S --noconfirm --needed unzip
curl -L -o calm.zip https://github.com/VitoVan/calm/releases/download/0.1.2/calm.zip
curl -L -o calm.zip https://github.com/VitoVan/calm/releases/download/0.1.3/calm.zip
unzip calm.zip -d calm
ls -lah calm
export PATH=$PATH:$(pwd)/calm/
Expand All @@ -131,6 +133,6 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.exe
18 changes: 10 additions & 8 deletions .github/workflows/example-mondrian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Build
run: |
set -x
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.2/calm.tgz
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.3/calm.tgz
mkdir calm
tar xvf calm.tgz --directory=calm
ls -lah calm
Expand All @@ -34,7 +34,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*-web.zip
Linux:
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Build
run: |
set -x
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.2/calm.tgz
curl -L -o calm.tgz https://github.com/VitoVan/calm/releases/download/0.1.3/calm.tgz
mkdir calm
tar xvf calm.tgz --directory=calm
ls -lah calm
Expand All @@ -60,7 +60,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.AppImage
macOS:
Expand All @@ -72,6 +72,8 @@ jobs:

env:
CI_MATRIX_OS: ${{ matrix.os }}
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1

steps:
- uses: actions/checkout@v3
Expand All @@ -80,7 +82,7 @@ jobs:
run: |
set -x
export OS_SUBFIX=".${CI_MATRIX_OS}"
curl -L -o calm.dmg https://github.com/VitoVan/calm/releases/download/0.1.2/calm${OS_SUBFIX}.dmg
curl -L -o calm.dmg https://github.com/VitoVan/calm/releases/download/0.1.3/calm${OS_SUBFIX}.dmg
hdiutil attach calm.dmg
cp -R "/Volumes/Calm - CALM/Calm.app/Contents/MacOS/" calm
ls -lah calm
Expand All @@ -98,7 +100,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.dmg
Windows:
Expand All @@ -114,7 +116,7 @@ jobs:
run: |
set -x
pacman -S --noconfirm --needed unzip
curl -L -o calm.zip https://github.com/VitoVan/calm/releases/download/0.1.2/calm.zip
curl -L -o calm.zip https://github.com/VitoVan/calm/releases/download/0.1.3/calm.zip
unzip calm.zip -d calm
ls -lah calm
export PATH=$PATH:$(pwd)/calm/
Expand All @@ -128,6 +130,6 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.exe
6 changes: 3 additions & 3 deletions .github/workflows/sbcl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.zip
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.zip
Expand Down Expand Up @@ -146,6 +146,6 @@ jobs:
- name: GH Release
uses: softprops/[email protected]
with:
prerelease: true
draft: true
files: |
*.zip
Loading

0 comments on commit ac0af51

Please sign in to comment.