feat: move to pesde + profile store #4
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: Production-CD | |
| on: | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| Production-CD: | |
| name: Production CD | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: ok-nick/setup-aftman@v0.4.2 | |
| - name: Install project dependencies | |
| run: wally install | |
| - name: Compile networking | |
| run: blink Place/Network/root.blink | |
| - name: Deploy to Production | |
| run: rojo upload --api_key "$RBX_KEY" --universe_id "$PRODUCTION_UNIVERSE_ID" --asset_id "$PRODUCTION_ID" | |
| env: | |
| RBX_KEY: ${{ secrets.RBX_KEY }} | |
| PRODUCTION_UNIVERSE_ID: ${{ vars.PRODUCTION_UNIVERSE_ID }} | |
| PRODUCTION_ID: ${{ vars.PRODUCTION_ID }} |