Apply labels to all stages of the dockerfile #29
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: Deploy to GitHub Pages | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| jobs: | |
| upload: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Pages | |
| uses: actions/[email protected] | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Choose files to deploy | |
| run: | | |
| mkdir public | |
| mv wsl.ps1 public | |
| mv user.sh public | |
| mv apt.sh public | |
| mv pacman.sh public | |
| mv install_ghidra.sh public | |
| mv ghidra_settings.py public | |
| mv aptvm.sh public | |
| - name: Upload GitHub Pages Artifact | |
| uses: actions/[email protected] | |
| with: | |
| path: public | |
| deploy: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| needs: upload | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/[email protected] |