diff options
| author | Eugen Wissner <belka@caraus.de> | 2024-07-25 12:35:28 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2024-07-25 12:35:28 +0200 |
| commit | 9b11300d23638f257543f90406b7ade6fd5118cb (patch) | |
| tree | 99e280f97ca021ca294c7d82072c412edda114b2 /.gitea/workflows/release.yml | |
| parent | 1c4584abddf9a235a09a3f02d33e693d26d47125 (diff) | |
| download | graphql-9b11300d23638f257543f90406b7ade6fd5118cb.tar.gz | |
Pass sdist output to the upload command
Diffstat (limited to '.gitea/workflows/release.yml')
| -rw-r--r-- | .gitea/workflows/release.yml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index b815625..08e90c2 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -7,17 +7,11 @@ on: jobs: release: - runs-on: haskell + runs-on: buildenv steps: - - name: Set up environment - run: | - apt-get update -y - apt-get upgrade -y - apt-get install -y nodejs pkg-config - uses: actions/checkout@v4 - name: Upload a candidate env: HACKAGE_PASSWORD: ${{ secrets.HACKAGE_PASSWORD }} run: | - cabal sdist - cabal upload --username belka --password ${HACKAGE_PASSWORD} + cabal sdist | awk -f .gitea/deploy.awk |
