From 5a31d065495477d8ff7db1c8a0752b0aaaba08d9 Mon Sep 17 00:00:00 2001 From: Alie Date: Mon, 29 Jan 2024 14:08:52 +0100 Subject: [PATCH] check contents of secret for testing --- .gitea/workflows/01_test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/01_test.yaml b/.gitea/workflows/01_test.yaml index 81290f4..4d2d186 100644 --- a/.gitea/workflows/01_test.yaml +++ b/.gitea/workflows/01_test.yaml @@ -13,7 +13,7 @@ jobs: - name: Check out repository code uses: actions/checkout@v3 - name: Get access token from secret - run: echo -e "${{ secrets.MASTODON_SECRET }}" > mastodon-data.toml && ls + run: echo -e "${{ secrets.MASTODON_SECRET }}" > mastodon-data.toml && cat mastodon-data.toml - name: Check code run: cargo check - name: Run tests