clear ident properties for rexxobject and screenobject #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Makefile CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: dmcoles/amiga-evo-cicd | |
credentials: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: run build | |
run: | | |
vamos -c /usr/amiga/.vamosrc --cwd esource: -V system:/usr/amiga -V esource:$GITHUB_WORKSPACE make build=release | |
- name: add build artifacts to publish | |
run: | | |
apk add lha | |
mkdir downloads | |
cp $GITHUB_WORKSPACE/rebuild downloads | |
cp $GITHUB_WORKSPACE/Rebuild.info downloads | |
cp $GITHUB_WORKSPACE/Rebuild_manual.txt downloads | |
cp $GITHUB_WORKSPACE/Rebuild_manual.txt.info downloads | |
cd downloads | |
lha a ../rebuild-nightly${{ github.sha }}.lha * | |
ls ../ | |
- name: Get current date | |
id: date | |
run: | | |
echo "builddate={$(date +'%Y-%m-%d')}" >> $GITHUB_OUTPUT | |
- name: Update release files and title | |
uses: mini-bomba/create-github-release@v1.1.3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag: dev-build | |
name: automated dev build ${{ steps.date.outputs.builddate }} | |
files: rebuild-nightly${{ github.sha }}.lha |