diff options
author | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-25 22:52:18 -0400 |
---|---|---|
committer | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-25 22:52:18 -0400 |
commit | 350290d0e5bc884de6a0695767dcbb5249e1bbe2 (patch) | |
tree | 55d526b12197efeaa0f3bc0af32667ff20ca81e4 | |
parent | 60d5b5f71b1e348e73ff4bdf048bfedf5ac82c27 (diff) | |
download | donetick-350290d0e5bc884de6a0695767dcbb5249e1bbe2.tar.gz donetick-350290d0e5bc884de6a0695767dcbb5249e1bbe2.tar.bz2 donetick-350290d0e5bc884de6a0695767dcbb5249e1bbe2.zip |
debug and list all files
-rw-r--r-- | .github/workflows/go-release.yml | 45 |
1 files changed, 24 insertions, 21 deletions
diff --git a/.github/workflows/go-release.yml b/.github/workflows/go-release.yml index 8308dad..a0117a0 100644 --- a/.github/workflows/go-release.yml +++ b/.github/workflows/go-release.yml @@ -32,27 +32,30 @@ jobs: run: | cd frontend-code npm run build - - name: Copy Frontend + - name: List all folders run: | - rm -rf ./frontend/dist/* - cp -r frontend-code/dist/ ./frontend/dist - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: 1.22 - check-latest: true - cache: true + ls -R + # - name: Copy Frontend + # run: | + # rm -rf ./frontend/dist/* + # cp -r frontend-code/dist/ ./frontend/dist + # - name: Set up Go + # uses: actions/setup-go@v5 + # with: + # go-version: 1.22 + # check-latest: true + # cache: true - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v6 - with: - # either 'goreleaser' (default) or 'goreleaser-pro' - distribution: goreleaser - # 'latest', 'nightly', or a semver - version: latest - args: release --clean --skip=validate - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution - # GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} + # - name: Run GoReleaser + # uses: goreleaser/goreleaser-action@v6 + # with: + # # either 'goreleaser' (default) or 'goreleaser-pro' + # distribution: goreleaser + # # 'latest', 'nightly', or a semver + # version: latest + # args: release --clean --skip=validate + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # # Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution + # # GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
\ No newline at end of file |