We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdc0e6c commit 0c6395cCopy full SHA for 0c6395c
.github/workflows/linux-precompile.yml
@@ -122,7 +122,13 @@ jobs:
122
mix elixir_make.precompile
123
124
- uses: softprops/action-gh-release@v1
125
- if: startsWith(github.ref, 'refs/tags/')
+ if: startsWith(github.ref, 'refs/tags/') && matrix.arch == 'x86_64'
126
with:
127
files: |
128
cache/*.tar.gz
129
+
130
+ - uses: softprops/action-gh-release@v1
131
+ if: startsWith(github.ref, 'refs/tags/') && matrix.arch != 'x86_64'
132
+ with:
133
+ files: |
134
+ cache/*${{ matrix.arch }}*.tar.gz
.github/workflows/macos-precompile.yml
@@ -13,6 +13,7 @@ jobs:
13
runs-on: macos-14
14
env:
15
MIX_ENV: prod
16
+ CC_PRECOMPILER_PRECOMPILE_ONLY_LOCAL: "true"
17
strategy:
18
matrix:
19
arch:
0 commit comments