v0.5.2 #8
Workflow file for this run
This file contains hidden or 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
| name: Publish To Wally | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Main | |
| uses: actions/checkout@v3 | |
| - name: Setup Aftman | |
| uses: ok-nick/setup-aftman@v0.4.2 | |
| with: | |
| token: ${{ github.token }} | |
| - name: Install Aftman Toolchains | |
| run: aftman install | |
| - name: Install Dependencies | |
| run: wally install | |
| - name: Log in to wally | |
| env: | |
| WALLY_AUTH: ${{ secrets.WALLY_AUTH_TOKEN }} | |
| run: | | |
| mkdir ~/.wally | |
| printenv WALLY_AUTH > ~/.wally/auth.toml | |
| - name: Push update to wally | |
| run: wally publish |