We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey,
I have this workflow:
- name: Snapcraft build if: matrix.platform == 'ubuntu-latest' uses: snapcore/action-build@v1 id: snapcraft - name: Snapcraft artifact upload if: matrix.platform == 'ubuntu-latest' uses: actions/upload-artifact@v2 with: name: Linux Snapcraft path: ${{ steps.snapcraft.outputs.snap }}
How can I convert this workflow into samuelmeuli? I mean how can I upload an artifact with this fork?
The text was updated successfully, but these errors were encountered:
... steps: ... - name: Snap install uses: samuelmeuli/action-snapcraft@v1 with: use_lxd: true - name: Snap build run: "sg lxd -c 'snapcraft --use-lxd'" - name: Snap upload id: snapcraft run: | snapcraft upload *.snap --release edge echo ::set-output name=snap::$(ls *.snap) - name: Snapcraft artifact upload uses: actions/upload-artifact@v2 ... with: ... path: ${{ steps.snapcraft.outputs.snap }}
Sorry, something went wrong.
casperdcl
No branches or pull requests
Hey,
I have this workflow:
How can I convert this workflow into samuelmeuli?
I mean how can I upload an artifact with this fork?
The text was updated successfully, but these errors were encountered: