1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-11 05:29:33 +00:00

remove token from cc65/doc, reenable the tests again

This commit is contained in:
mrdudz 2023-05-04 21:13:37 +02:00
parent 610dfbb41c
commit 7053dac3a9

View File

@ -7,15 +7,6 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }} group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true cancel-in-progress: true
# suggested at https://jonathansoma.com/everything/git/github-actions-403-error/
# https://github.com/orgs/community/discussions/26694
#permissions:
# deployments: write
# contents: write
# statuses: write
# actions: write
# checks: read
jobs: jobs:
build_windows: build_windows:
name: Build (Windows) name: Build (Windows)
@ -66,15 +57,15 @@ jobs:
- name: Build the platform libraries. - name: Build the platform libraries.
shell: bash shell: bash
run: make -j2 lib QUIET=1 run: make -j2 lib QUIET=1
# - name: Run the regression tests. - name: Run the regression tests.
# shell: bash shell: bash
# run: make test QUIET=1 run: make test QUIET=1
# - name: Test that the samples can be built. - name: Test that the samples can be built.
# shell: bash shell: bash
# run: make -j2 samples run: make -j2 samples
# - name: Remove the output from the samples tests. - name: Remove the output from the samples tests.
# shell: bash shell: bash
# run: make -C samples clean run: make -C samples clean
- name: Remove programs in util directory - name: Remove programs in util directory
shell: bash shell: bash
run: make -C util clean run: make -C util clean
@ -110,6 +101,8 @@ jobs:
with: with:
repository: cc65/doc repository: cc65/doc
# this token will expire, if it does, generate a new one as decribed in https://github.com/cc65/cc65/issues/2065 # this token will expire, if it does, generate a new one as decribed in https://github.com/cc65/cc65/issues/2065
# - apparently only a "classic" token works here
# - the token must exist in the cc65/cc65 repo
token: ${{ secrets.DOC_PAT }} # use secret token instead of default token: ${{ secrets.DOC_PAT }} # use secret token instead of default
path: doc.git path: doc.git
- name: Update the online documents. - name: Update the online documents.