We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76098b6 commit b97aae2Copy full SHA for b97aae2
1 file changed
.github/workflows/main.yml
@@ -11,6 +11,8 @@ jobs:
11
env:
12
# Set the version of ruby-install to use
13
RUBY_INSTALL_VERSION: 0.9.4
14
+ BUILD_PATH: build/${{ matrix.os }}-${{ matrix.arch }}
15
+ ARCHIVE_PATH: ${{ matrix.os }}-${{ matrix.arch }}.tar.gz
16
17
runs-on: ${{ matrix.os }}
18
strategy:
@@ -49,11 +51,10 @@ jobs:
49
51
sudo make install
50
52
ruby-install --version
53
- # Run your build script
54
+ # Run your build script. BUILD_PATH and ARCHIVE_PATH are used by this script.
55
- name: Run build script
56
run: |
57
bash builder/build.sh
- mv build/build.tar.gz ${{ matrix.os }}-${{ matrix.arch }}.tar.gz
58
59
# Upload the final tar.gz artifact for each OS/arch
60
- name: Upload build artifact
0 commit comments