Skip to content
This repository was archived by the owner on Mar 2, 2025. It is now read-only.

Repository: archive notice #23

Repository: archive notice

Repository: archive notice #23

Workflow file for this run

#
# Copyright (C) 2017-2022 CASM Organization <https://casm-lang.org>
# All rights reserved.
#
# Developed by: Philipp Paulweber et al.
# <https://github.com/casm-lang/casm-lang.container.linux/graphs/contributors>
#
# This file is part of casm-lang.container.linux.
#
# casm-lang.container.linux is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# casm-lang.container.linux is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with casm-lang.container.linux. If not, see <http://www.gnu.org/licenses/>.
#
name: build
on: [push]
jobs:
docker:
strategy:
matrix:
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Building
run: |
make build
- name: Deploying
run: |
echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
make deploy
docker logout
rm -f $HOME/.docker/config.json