### github action to publish a debug ## name: "debug" ## Controls when the workflow will run on: push: branches: [ github-action ] ## Allows you to run this workflow manually from the Actions tab workflow_dispatch: ## A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: # This workflow contains a single job called "build" debug: # The type of runner that the job will run on runs-on: ubuntu-latest # Steps represent a sequence of tasks that will be executed as part of the job steps: - name: "checkout" # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it uses: actions/checkout@v2 - name: "change ImageMagick policy to allow pdf->png conversion" run: sudo sed -i 's/^.*policy.*coder.*none.*PDF.*//' /etc/ImageMagick-6/policy.xml - name: "install ghostscript" run: sudo apt-get install -y ghostscript ###### multiple options for a TeX environment # ## # - name: "setup TeX Live (via apt-get)" # # old TeX Live version: 2019 # run: | # sudo apt-get update -y || sudo apt-get update -y || sudo apt-get update -y # sudo apt-get install -y texlive-latex-base || sudo apt-get install -y texlive-latex-base || sudo apt-get install -y texlive-latex-base # ## # - name: "setup TeX Live (via DanySK)" # # old TeX Live version: 2019 # uses: DanySK/setup-texlive-action@master # with: # requirements-file: .github/tex/test.packages.txt # ## # - name: "setup TeX Live (via teatimeguest)" # # tlmgr needs updates and fails # uses: teatimeguest/setup-texlive-action@v1 # with: # package-file: .github/tex/test.packages.txt # ## - name: "setup TeX Live (via paolobrasolin)" uses: paolobrasolin/setup-texlive-action@v1 with: profile-path: ${{ github.workspace }}/.github/tex/minimal.profile.txt packages-path: ${{ github.workspace }}/.github/tex/test.packages.txt - name: "install tikz-trackschematic" run: chmod +x dev-install.sh && ./dev-install.sh -b - name: "test tikz-trackschematic" run: cd test && chmod +x testing.sh && ./testing.sh && cd .. ## create varibale ${{ steps.tag.outputs.tag }} - name: "get tag" id: tag uses: dawidd6/action-get-tag@v1 with: # Optionally strip `v` prefix strip_v: false - name: "create tikz-trackschematic package" run: chmod +x create-release.sh ./create-release.sh -v ${{ steps.tag.outputs.tag }} # ## opening a debug console # - name: Setup upterm session # uses: lhotari/action-upterm@v1 # with: # ## limits ssh access and adds the ssh public keys of the listed GitHub users # limit-access-to-users: railtoolkit,kaat0