Skip to content

Commit

Permalink
actions/checkout@v3 (#1238)
Browse files Browse the repository at this point in the history
  • Loading branch information
meisenzahl authored Jan 8, 2023
1 parent da0c419 commit a735bfe
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 22 deletions.
21 changes: 10 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,19 @@ on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

container:
image: elementary/docker:unstable

steps:
- uses: actions/checkout@v1
- name: Install Dependencies
run: |
apt update
apt install -y meson sassc
- name: Build
run: |
meson build
ninja -C build
ninja -C build install
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
apt update
apt install -y meson sassc
- name: Build
run: |
meson build
ninja -C build
ninja -C build install
21 changes: 10 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---

name: Release

on:
Expand All @@ -15,14 +14,14 @@ jobs:
if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release')

steps:
- name: Checkout
uses: actions/checkout@v1
- name: Checkout
uses: actions/checkout@v3

- name: Release
uses: elementary/actions/release@master
env:
GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}"
GIT_USER_NAME: "elementaryBot"
GIT_USER_EMAIL: "[email protected]"
with:
release_branch: 'horus'
- name: Release
uses: elementary/actions/release@master
env:
GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}"
GIT_USER_NAME: "elementaryBot"
GIT_USER_EMAIL: "[email protected]"
with:
release_branch: "horus"

0 comments on commit a735bfe

Please sign in to comment.