-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #220 from kategengler/kg-fix-build
- Loading branch information
Showing
14 changed files
with
340 additions
and
209 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,14 +26,14 @@ jobs: | |
git config --global user.name "Tomster" | ||
git config --global user.email "[email protected]" | ||
- name: Set up Volta | ||
uses: rwjblue/setup-volta@v1 | ||
uses: volta-cli/action@v4 | ||
- name: Set up build cache (yarn) | ||
uses: actions/cache@preview | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/yarn | ||
key: ${{ runner.os }}-yarn | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
- name: Install dependencies (apt-get) | ||
run: | | ||
sudo apt-get update -y | ||
|
@@ -69,19 +69,19 @@ jobs: | |
working-directory: dist/code/super-rentals | ||
run: git clean -dfX | ||
- name: Upload artifacts (assets) | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: assets (${{ matrix.channel }}) | ||
path: dist/assets | ||
- name: Upload artifacts (markdown) | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: markdown (${{ matrix.channel }}) | ||
path: dist/markdown | ||
- name: Upload artifacts (code) | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: code (${{ matrix.channel }}) | ||
|
@@ -142,12 +142,12 @@ jobs: | |
sudo apt-get update -y | ||
sudo apt-get install -y zipcmp advancecomp optipng perceptualdiff | ||
- name: Download artifacts (assets) | ||
uses: actions/download-artifact@v2 | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: assets (release) | ||
path: assets | ||
- name: Download artifacts (markdown) | ||
uses: actions/download-artifact@v2 | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: markdown (release) | ||
path: markdown | ||
|
@@ -240,7 +240,7 @@ jobs: | |
git add public/images | ||
- name: Upload artifacts (perceptualdiff) | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: perceptualdiff (release) | ||
|
@@ -305,7 +305,7 @@ jobs: | |
with: | ||
ssh-private-key: ${{ secrets.SUPER_RENTALS_DEPLOY_KEY }} | ||
- name: Download artifacts | ||
uses: actions/download-artifact@v2 | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: code (release) | ||
path: . | ||
|
@@ -364,7 +364,7 @@ jobs: | |
with: | ||
ssh-private-key: ${{ secrets.SUPER_RENTALS_DEPLOY_KEY }} | ||
- name: Download artifacts | ||
uses: actions/download-artifact@v2 | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: code (release) | ||
path: output | ||
|
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.