Remove pre-release from workflow Signed-off-by: Leo Moser <leomoser99@gmail.com> Fixed up merge conflict in .github/workflows/ci.yaml.
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 17c0b6c..12a288b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml
@@ -56,7 +56,7 @@ if: github.ref_type == 'tag' run: | if [ "${{ secrets.BOT_GH_TOKEN }}" != "" ]; then - ciel push --pre --token ${{ secrets.BOT_GH_TOKEN }} --pdk ${{ matrix.pdk-family }} $(git rev-parse HEAD) + ciel push --token ${{ secrets.BOT_GH_TOKEN }} --pdk ${{ matrix.pdk-family }} $(git rev-parse HEAD) else echo "Secret BOT_GH_TOKEN unset. Not attempting to push." fi