From c479a24e841d2d72c87dd2a9d68f60fb1116c20f Mon Sep 17 00:00:00 2001 From: Die4Ever Date: Thu, 28 Mar 2024 06:25:01 -0500 Subject: [PATCH] github actions alpha workflow --- .github/workflows/release-installer.yml | 70 ++++++++++++------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/.github/workflows/release-installer.yml b/.github/workflows/release-installer.yml index 3e9d4b638..7b3d5ee7e 100644 --- a/.github/workflows/release-installer.yml +++ b/.github/workflows/release-installer.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v4 # install stuff and run tests - - uses: ./.github/run-tests + #- uses: ./.github/run-tests # default the tag to the current ref, or use the testing tag - run: echo "RELEASE_TAG=${{ github.ref }}" >> $GITHUB_ENV @@ -30,23 +30,23 @@ jobs: shell: bash # upload assets to release - - name: Upload Release Asset DXRando - id: upload-release-asset-dxrando - uses: svenstaro/upload-release-action@v2 - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - file: installer/dist/DXRandoInstaller.exe - asset_name: DXRandoInstaller.exe - tag: ${{ env.RELEASE_TAG }} + # - name: Upload Release Asset DXRando + # id: upload-release-asset-dxrando + # uses: svenstaro/upload-release-action@v2 + # with: + # repo_token: ${{ secrets.GITHUB_TOKEN }} + # file: installer/dist/DXRandoInstaller.exe + # asset_name: DXRandoInstaller.exe + # tag: ${{ env.RELEASE_TAG }} - - name: Upload Release Asset BingoViewer - id: upload-release-asset-bingoviewer - uses: svenstaro/upload-release-action@v2 - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - file: installer/dist/BingoViewer.exe - asset_name: BingoViewer.exe - tag: ${{ env.RELEASE_TAG }} + # - name: Upload Release Asset BingoViewer + # id: upload-release-asset-bingoviewer + # uses: svenstaro/upload-release-action@v2 + # with: + # repo_token: ${{ secrets.GITHUB_TOKEN }} + # file: installer/dist/BingoViewer.exe + # asset_name: BingoViewer.exe + # tag: ${{ env.RELEASE_TAG }} linux: runs-on: ubuntu-latest @@ -66,7 +66,7 @@ jobs: github.rest.git.updateRef({ owner: context.repo.owner, repo: context.repo.repo, - ref: 'refs/tags/testing', + ref: 'tags/testing', sha: context.sha }) @@ -74,7 +74,7 @@ jobs: - run: sudo apt-get update -y - run: sudo apt-get install -y python3-tk idle3 binutils - - uses: ./.github/run-tests + #- uses: ./.github/run-tests # default the tag to the current ref, or use the testing tag - run: echo "RELEASE_TAG=${{ github.ref }}" >> $GITHUB_ENV @@ -85,20 +85,20 @@ jobs: shell: bash # upload assets to release - - name: Upload Release Asset DXRando - id: upload-release-asset-dxrando - uses: svenstaro/upload-release-action@v2 - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - file: installer/dist/DXRandoInstaller - asset_name: DXRandoInstaller-Linux - tag: ${{ env.RELEASE_TAG }} + # - name: Upload Release Asset DXRando + # id: upload-release-asset-dxrando + # uses: svenstaro/upload-release-action@v2 + # with: + # repo_token: ${{ secrets.GITHUB_TOKEN }} + # file: installer/dist/DXRandoInstaller + # asset_name: DXRandoInstaller-Linux + # tag: ${{ env.RELEASE_TAG }} - - name: Upload Release Asset BingoViewer - id: upload-release-asset-bingoviewer - uses: svenstaro/upload-release-action@v2 - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - file: installer/dist/BingoViewer - asset_name: BingoViewer-Linux - tag: ${{ env.RELEASE_TAG }} + # - name: Upload Release Asset BingoViewer + # id: upload-release-asset-bingoviewer + # uses: svenstaro/upload-release-action@v2 + # with: + # repo_token: ${{ secrets.GITHUB_TOKEN }} + # file: installer/dist/BingoViewer + # asset_name: BingoViewer-Linux + # tag: ${{ env.RELEASE_TAG }}